diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2024-06-24 15:16:20 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2024-06-24 15:16:20 +0200 |
commit | e1f0a47344a30315559325ca8898b9941d7fea01 (patch) | |
tree | f8bd829dda65c8fc73885d1346d3486efff43b6a /theme/bulma/templates | |
parent | 5077c6f61e2a58b7590a0200566510894d130361 (diff) |
Corrections in the theme
Diffstat (limited to 'theme/bulma/templates')
-rw-r--r-- | theme/bulma/templates/article.html | 2 | ||||
-rw-r--r-- | theme/bulma/templates/base.html | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/theme/bulma/templates/article.html b/theme/bulma/templates/article.html index bc78ec9..69a746b 100644 --- a/theme/bulma/templates/article.html +++ b/theme/bulma/templates/article.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block html_lang %}{{ article.lang }}{% endblock %} -{% block title %}{{ SITENAME }} - {{ article.title|striptags }}{% endblock %} +{% block title %} - {{ article.title|striptags }}{% endblock %} {% block head %} {{ super() }} diff --git a/theme/bulma/templates/base.html b/theme/bulma/templates/base.html index 6b281d6..d3eb571 100644 --- a/theme/bulma/templates/base.html +++ b/theme/bulma/templates/base.html @@ -4,6 +4,7 @@ {% block head %} <meta charset="utf-8" /> <meta name="generator" content="Pelican" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/style.min.css"> {% if FEED_ALL_ATOM %} <link href="{{ FEED_DOMAIN }}/{% if FEED_ALL_ATOM_URL %}{{ FEED_ALL_ATOM_URL }}{% else %}{{ FEED_ALL_ATOM }}{% endif %}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Full Atom Feed" /> @@ -56,12 +57,12 @@ </head> <body id="index" class="home"> - <main class="columns"> - <div class="column is-3 has-text-centered aside p-6"> + <main class="columns is-desktop"> + <div class="column is-3-desktop has-text-centered aside p-6"> {% include "partial/sidebar.html" %} {% include "partial/nav.html" %} </div> - <div class="column is-9 p-6"> + <div class="column is-9-desktop p-6"> {% block content %} {% endblock %} {% include "partial/footer.html" %} |