diff options
author | FreeArtMan <dos21h@gmail.com> | 2016-11-09 20:27:16 +0000 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2016-11-09 20:27:16 +0000 |
commit | 0e3bf8fe600072a715764a150dc3c27b6e57da58 (patch) | |
tree | 5d3fa9908322ea2fae88a2b4f798e328d6670af0 /src/templ | |
parent | 85b685bd72536e0416597b888b3a77ea0ba10afb (diff) | |
download | md-site-0e3bf8fe600072a715764a150dc3c27b6e57da58.tar.gz md-site-0e3bf8fe600072a715764a150dc3c27b6e57da58.zip |
Added tag support
Diffstat (limited to 'src/templ')
-rw-r--r-- | src/templ/base.thtml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/templ/base.thtml b/src/templ/base.thtml index 2d6b53a..dc647d7 100644 --- a/src/templ/base.thtml +++ b/src/templ/base.thtml @@ -7,7 +7,8 @@ <link rel="stylesheet" href="/styles/main.css"> <script src="/js/highlight.pack.js"></script> <script>hljs.initHighlightingOnLoad();</script> - <title>{% block title %}{% endblock %}</title> + <title>{{article.title}}</title> + {% if article.keywords %}<meta name="keyword" content="{{article.keywords}}"/>{% endif %} <meta charset="UTF-8" /> </head> <body> |