1 | { |
2 | "copyright": "<center style=\"margin-top:2em\"><p>© Copyright 2020 Joshua 'joshuas3' Stockin - <a href=\"/\">Home</a> - <a href=\"/blog\">Blog</a> - <a href=\"/privacy\">Privacy</a></p></center>", |
3 | "static": "resources/static", |
4 | "templates": { |
5 | "blog-archive": "resources/templates/blog-archive.html", |
6 | "blog-article": "resources/templates/blog-article.html", |
7 | "blog-archive-listing": "resources/templates/blog-archive-listing.html", |
8 | "blog-css": "resources/templates/blog.css", |
9 | "landing": "resources/landing.html", |
10 | "favicon": "resources/favicon.ico", |
11 | "privacy": "resources/privacy.html", |
12 | "404": "resources/templates/error.html" |
13 | }, |
14 | "articles": [ |
15 | { |
16 | "title": "Creating My Website Stack", |
17 | "date": "NOV 16 2019", |
18 | "banner": "/static/site-compile.png", |
19 | "summary": "Designing and creating a statically hosted website; writing a custom HTML compiler in Python; configuring nginx to serve HTML pages and static files; and automatically deploying into production.", |
20 | "sections": ["Design", "Creating Site Templates", "Writing the Compiler", "Serving Webpages", "Automatic Deployment into Production", "Publishing the Website"], |
21 | "content": "resources/articles/website-creation.html" |
22 | } |
23 | ] |
24 | } |
25 |
|