diff options
Diffstat (limited to 'theme/templates/base.html')
-rw-r--r-- | theme/templates/base.html | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/theme/templates/base.html b/theme/templates/base.html index 143f874..4c06aea 100644 --- a/theme/templates/base.html +++ b/theme/templates/base.html @@ -12,29 +12,25 @@ {% if site_description is defined %}<meta name="description" content="{{ site_description }}" >{% endif %} {% if site_keywords is defined %}<meta name="keywords" content="{{ site_keywords }}" >{% endif %} <link rel="stylesheet" href="{{ url_for("static", file="styles.min.css") }}" type="text/css"> - <link rel="icon" type="image/x-icon" href="{{ url_for("static", file="favicon.ico") }}"> + <link rel="icon" type="image/x-icon" href="data:,"> {% block meta %}{% endblock %} {% endblock %} </head> <body> - <a href="#main" class="skip-link">Skip to content</a> - <nav class="site-nav" aria-label="site-nav" role="navigation"> + <nav aria-label="site-nav" role="navigation"> <ul> <li><a href="/">Home</a></li> <li><a href="/about/">About</a></li> <li><a href="/blog/">Blog</a></li> <li><a href="/services/">Services</a></li> - <li><a href="/wiki/">Wiki</a></li> </ul> </nav> - <main id="main">{% block main %}{% endblock %}</main> + <main>{% block main %}{% endblock %}</main> <footer> - <p> - <a href="https://stats.uptimerobot.com/OwOWs7HU0z">Status</a> · - <a href="https://git.cleberg.net/cleberg.net.git" target="_blank" - rel="noopener">Source</a> · - <a href="/feed.xml">RSS</a> - </p> + <a href="https://stats.uptimerobot.com/OwOWs7HU0z">Status</a> · + <a href="https://git.cleberg.net/cleberg.net.git" target="_blank" + rel="noopener">Source</a> · + <a href="/feed.xml">RSS</a> </footer> </body> </html> |