diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-11-18 12:15:16 +0200 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-11-18 12:15:16 +0200 |
commit | 8628a4ae2e7c8998c8d2ffe2ecc51f2624aa66b1 (patch) | |
tree | bd4bfbb9a9a77dfca3f3849f567fae45155b10b8 /templates/base.html | |
parent | d0a72793fffc208323292430bbbd8a0c7c2b6a2d (diff) |
Massive changes - migrating to Hermit with a few tweaks.
Changes to be committed:
new file: .gitignore
modified: .gitmodules
modified: config.toml
new file: content/about.md
deleted: content/blog/_index.md
deleted: content/blog/first.md
deleted: content/blog/second.md
new file: content/posts/_index.md
new file: content/posts/code_test.md
new file: content/posts/good_first_post.md
new file: content/posts/later_posts.md
new file: content/posts/typography.md
deleted: description
deleted: index.html
deleted: public/blog/first/index.html
deleted: public/blog/index.html
deleted: public/blog/second/index.html
deleted: public/elasticlunr.min.js
deleted: public/search_index.en.js
deleted: public/typography.css
new file: sass/_animate.scss
new file: sass/_icons.scss
new file: sass/_normalize.scss
new file: sass/_predefined.scss
new file: sass/_syntax.scss
new file: sass/style.scss
new file: static/favicon-32x32.png
new file: static/favicon.ico
new file: static/js/main.js
modified: templates/404.html
deleted: templates/base.html
deleted: templates/blog-page.html
deleted: templates/blog.html
new file: templates/index.html
new file: templates/macros.html
new file: templates/page.html
new file: templates/section.html
new file: templates/tags/list.html
new file: templates/tags/single.html
new file: themes/404.html
new file: themes/config.toml
deleted: themes/hermit_zola
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/templates/base.html b/templates/base.html deleted file mode 100644 index a85bca1..0000000 --- a/templates/base.html +++ /dev/null @@ -1,20 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - -<head> - <meta charset="utf-8"> - <title>MyBlog</title> - {% block rss %} - <link rel="alternate" type="application/atom+xml" title="RSS" href="{{ get_url(path="atom.xml", trailing_slash=false) }}"> - {% endblock %} -</head> - -<body> - <section class="section"> - <div class="container"> - {% block content %} {% endblock %} - </div> - </section> -</body> - -</html> |