-
Notifications
You must be signed in to change notification settings - Fork 1
Implementing blog #14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
nasfernane
wants to merge
12
commits into
NodeSecure:main
Choose a base branch
from
nasfernane:feat/blog_articles
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
2279668
feat: base markdown conversion
nasfernane 57dbf27
feat: implementing blog
nasfernane 9cd3c80
feat: added articles descriptions and updated computed blog articles …
nasfernane 7f38485
feat: update computed html styling
nasfernane f64b80a
feat: sanitize blog html content, format date and add read time estim…
nasfernane fd6e2f0
fix: format external dev.to article links
nasfernane 374ce3f
feat: responsive on articles list
nasfernane fc6ae54
feat: add article author links
nasfernane b598c33
feat: format blog externals links
nasfernane c2f843c
feat: update list and code styling
nasfernane ecaf383
feat: update code blocks padding
nasfernane 9c6b42f
fix: remove built blog files
nasfernane File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
articles/everything-you-need-to-know-about-package-managers.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" | ||
rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="../css/reset.css" /> | ||
<link rel="stylesheet" href="../css/index.css" /> | ||
<link rel="stylesheet" href="../css/blog.css" /> | ||
<title>NodeSecure - Blog</title> | ||
</head> | ||
|
||
<body> | ||
<canvas id="network-bg"></canvas> | ||
|
||
<header class="blogHeader"> | ||
<div class="header-background"></div> | ||
<div class="header-content centered-content"> | ||
<img src="https://avatars.githubusercontent.com/u/85318671?s=200&v=4" alt="NodeSecure Logo" | ||
style="width:80px;height:80px;border-radius:20px;background:#fff2;box-shadow:0 2px 8px #0002;margin-bottom:1.2rem;"> | ||
<h1> | ||
NodeSecure Blog | ||
</h1> | ||
<p class="subtitle"> | ||
Building a safer Node.js and JavaScript ecosystem | ||
</p> | ||
<p class="description">We are a community of developers building free open source tools to secure the Node.js & JavaScript ecosystem. Our area of expertise is <b>SCA</b> (Software Composition Analysis).</p> | ||
<div class="header-buttons"> | ||
<a href="https://github.com/NodeSecure" target="_blank" title="NodeSecure on GitHub" class="view-on-github"> | ||
<img src="https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/github.svg" alt="GitHub" | ||
style="width:28px;height:28px;filter:invert(1) brightness(2);"> | ||
<span>View on GitHub</span> | ||
</a> | ||
<a href="https://discord.gg/4Wn8rjAtB4" target="_blank" title="Join our Discord" class="view-on-discord"> | ||
<img src="https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/discord.svg" alt="Discord" | ||
style="width:28px;height:28px;filter:invert(1) brightness(2);"> | ||
<span>Join Discord</span> | ||
</a> | ||
<a href="./index.html" title="Visit our blog" class="view-on-discord"> | ||
<img width="64" height="64" src="https://img.icons8.com/glyph-neue/64/circled-left-2.png" style="width:28px;height:28px;filter:invert(1) brightness(2);" alt="Back to blog"/> | ||
<span>Back to blog</span> | ||
</a> | ||
</div> | ||
</div> | ||
</header> | ||
<main> | ||
<article></article> | ||
</main> | ||
|
||
<script type="module" src="../src/particules.js"></script> | ||
</body> | ||
|
||
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" | ||
rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="../css/reset.css" /> | ||
<link rel="stylesheet" href="../css/index.css" /> | ||
<link rel="stylesheet" href="../css/blog.css" /> | ||
<title>NodeSecure - Blog</title> | ||
</head> | ||
|
||
<body> | ||
<canvas id="network-bg"></canvas> | ||
|
||
<header class="blogHeader"> | ||
<div class="header-background"></div> | ||
<div class="header-content centered-content"> | ||
<img src="https://avatars.githubusercontent.com/u/85318671?s=200&v=4" alt="NodeSecure Logo" | ||
style="width:80px;height:80px;border-radius:20px;background:#fff2;box-shadow:0 2px 8px #0002;margin-bottom:1.2rem;"> | ||
<h1> | ||
NodeSecure Blog | ||
</h1> | ||
<p class="subtitle"> | ||
Building a safer Node.js and JavaScript ecosystem | ||
</p> | ||
<p class="description">We are a community of developers building free open source tools to secure the Node.js & JavaScript ecosystem. Our area of expertise is <b>SCA</b> (Software Composition Analysis).</p> | ||
<div class="header-buttons"> | ||
<a href="https://github.com/NodeSecure" target="_blank" title="NodeSecure on GitHub" class="view-on-github"> | ||
<img src="https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/github.svg" alt="GitHub" | ||
style="width:28px;height:28px;filter:invert(1) brightness(2);"> | ||
<span>View on GitHub</span> | ||
</a> | ||
<a href="https://discord.gg/4Wn8rjAtB4" target="_blank" title="Join our Discord" class="view-on-discord"> | ||
<img src="https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/discord.svg" alt="Discord" | ||
style="width:28px;height:28px;filter:invert(1) brightness(2);"> | ||
<span>Join Discord</span> | ||
</a> | ||
<a href="../index.html" title="Visit our blog" class="view-on-discord"> | ||
<img width="64" height="64" src="https://img.icons8.com/glyph-neue/64/circled-left-2.png" style="width:28px;height:28px;filter:invert(1) brightness(2);" alt="Back to landing"/> | ||
<span>Back to site</span> | ||
</a> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<main> | ||
<section class="articles-list"></section> | ||
</main> | ||
|
||
<script type="module" src="../src/particules.js"></script> | ||
</body> | ||
|
||
</html> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing new line at the end of the file (there is emoji stop if you reviews files you will see it).