diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2023-01-30 20:14:24 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2023-01-30 20:14:24 +0530 |
commit | ae3b27daf9400e6b65708f2b5f38e04c1664d8fc (patch) | |
tree | d43b9af230ad6d261b516bc54100896c1df70e34 /content/docs/resources-to-learn-programming/web-development/frontend/static-site-generators | |
parent | ed0acef173ae46ff7b8689b896a2913149b7da4e (diff) |
changed programming resources path, added more pages
Diffstat (limited to 'content/docs/resources-to-learn-programming/web-development/frontend/static-site-generators')
2 files changed, 0 insertions, 26 deletions
diff --git a/content/docs/resources-to-learn-programming/web-development/frontend/static-site-generators/_index.md b/content/docs/resources-to-learn-programming/web-development/frontend/static-site-generators/_index.md deleted file mode 100644 index 6a59df6..0000000 --- a/content/docs/resources-to-learn-programming/web-development/frontend/static-site-generators/_index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Static Site Generators -description: My favourite way of building a website -weight: 2 ---- - -Static site generators let you write a template for the website in HTML and let you write the content of the website in another format (markdown, for example) -and turn it into a HTML page with the given template. -I love static site generators because they are easy to use and are very fast since all the HTML files are pre-compiled before you can host them on your server. -It's better than writing the whole website in HTML because if you want to change the layout of the website, editing all the pages one-by-one would take a long time. -Whereas in a static site generator, you can just edit the template file and it'll do the job automatically. - -For small websites/websites without much/any logic, I recommend using a static site generator. This website is written in Hugo, which is awesome. diff --git a/content/docs/resources-to-learn-programming/web-development/frontend/static-site-generators/hugo.md b/content/docs/resources-to-learn-programming/web-development/frontend/static-site-generators/hugo.md deleted file mode 100644 index 9664b30..0000000 --- a/content/docs/resources-to-learn-programming/web-development/frontend/static-site-generators/hugo.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Hugo -description: The Hugo static site generator -weight: 1 ---- - -The website you're reading is built with Hugo. It's very customizable and fast. Unfortunately, learning Hugo can be tricky at first, but you'll come to -love hugo after you understand it! - -- Hugo Tutorial: [Video by Luke Smith](https://www.youtube.com/watch?v=ZFL09qhKi5I) -- Hugo Shortcodes: [Video by Luke Smith](https://www.youtube.com/watch?v=QTolhoxMyXg) - -You need a theme to create a Hugo website. If you don't want to create one yourself you can check out mine! <https://github.com/MikunoNaka/vidhukant-hugo> |