diff options
| author | Botond Hende <nettingman@gmail.com> | 2025-12-23 00:40:57 +0100 |
|---|---|---|
| committer | Botond Hende <nettingman@gmail.com> | 2025-12-23 00:40:57 +0100 |
| commit | 71c7de032edca8bfd00871e0f0fe986bbd9e60a5 (patch) | |
| tree | d4735895b56c6679c5f30af2f22b708da5ceaf97 /blog | |
| parent | b189fb816abf0e7b0f7c85f8b465916d8ba5ff63 (diff) | |
comic basic layout
Diffstat (limited to 'blog')
| -rw-r--r-- | blog/templates/base.html.j2 | 8 | ||||
| -rw-r--r-- | blog/templates/sidebar.html.j2 | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/blog/templates/base.html.j2 b/blog/templates/base.html.j2 index fa1f2d8..6c5845a 100644 --- a/blog/templates/base.html.j2 +++ b/blog/templates/base.html.j2 @@ -2,9 +2,9 @@ <html dir="ltr" lang="en"> <head> <meta charset="utf-8"/> - <title>{% block page_title %}{{ site.blog_name }}{% endblock %}</title> + <title>{% block page_title %}{{ blog.blog_name }}{% endblock %}</title> <meta name="viewport" content="width=device-width, initial-scale=1"/> - <meta property="og:title" content="{% block page_title_short %}{{ site.blog_name }}{% endblock %}" /> + <meta property="og:title" content="{% block page_title_short %}{{ blog.blog_name }}{% endblock %}" /> <meta property="og:type" content="article" /> <meta property="og:url" content="{{ url }}" /> <link rel="stylesheet" href="{{ site.assets_path_static }}/css/bootstrap-grid.min.css" /> @@ -18,8 +18,8 @@ <a href="/" class="row dont-bother"> <header class="col-lg-9" role="banner"> <div> - <h1 class="green blog-title">{{ site.blog_name }}</h1> - <p>{{ site.subtitle }}</p> + <h1 class="green blog-title">{{ blog.blog_name }}</h1> + <p>{{ blog.subtitle }}</p> </div> <span class="ascii-art"><b><span class="green"> ccee88oo C8O8O8Q8PoOb o8oo diff --git a/blog/templates/sidebar.html.j2 b/blog/templates/sidebar.html.j2 index 7390145..b51cde7 100644 --- a/blog/templates/sidebar.html.j2 +++ b/blog/templates/sidebar.html.j2 @@ -23,7 +23,7 @@ Sometimes I touch upon some more artistic stuff, but mostly just to amuse myself </a> <h3 class="magenta">Top tags</h3> <p>ls <a href="/tags">~/tags/</a></p> -<p>{% for tag in site.top_tags %}<a href="/tags/{{ tag }}.html">{{ tag }}/</a>{% if not loop.last %} {% endif %}{% endfor %}</p> +<p>{% for tag in blog.top_tags %}<a href="/tags/{{ tag }}.html">{{ tag }}/</a>{% if not loop.last %} {% endif %}{% endfor %}</p> <h3 class="magenta">I want different colors</h3> <p>ls ~/themes/ <a class="theme-extender" href="javascript:void(0);" onclick="setThemeExtend()">-A</a></p> <a href="javascript:void(0);" class="icon-text theme-selector-light" onclick="setTheme('light')"> |
