diff options
| author | Franck Cuny <franck@fcuny.net> | 2024-12-26 19:01:18 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2024-12-26 19:01:18 -0800 |
| commit | bf56a9edfcca610bc771e0176f72bbce59fcc87a (patch) | |
| tree | 382908e01dee4992a9566a5859928ee4c10334bb /templates/base.html | |
| parent | add back the resume and generate it with nix (diff) | |
| download | fcuny.net-bf56a9edfcca610bc771e0176f72bbce59fcc87a.tar.gz | |
large cleanup
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/templates/base.html b/templates/base.html index ba2afdb..729abb9 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,24 +1,28 @@ -<!DOCTYPE HTML> -<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ lang }}" xml:lang="{{ lang }}"> +<!doctype html> +<html + xmlns="http://www.w3.org/1999/xhtml" + lang="{{ lang }}" + xml:lang="{{ lang }}" +> <head> <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> + <meta + name="viewport" + content="width=device-width, initial-scale=1, user-scalable=no" + /> <link rel="canonical" href="{{- current_url|safe -}}" /> <link rel="stylesheet" href="/css/custom.css" /> - <link rel="stylesheet" href="/css/carousel.css" /> <meta name="author" content="{{- config.author -}}" /> - <meta name="description" content="{%- block description -%}{{- config.description -}}{%- endblock description -%}" /> - <link rel="alternate" type="application/atom+xml" title="Blog posts" href="{{ get_url(path="/feed.xml", trailing_slash=false) }}" /> - <script src="/js/carousel.js"></script> + <meta + name="description" + content="{%- block description -%}{{- config.description -}}{%- endblock description -%}" + /> <title>{% block title %}{{- config.title -}}{% endblock title %}</title> </head> <body> - <main> - {% block content %}{% endblock content %} - </main> + <main>{% block content %}{% endblock content %}</main> </body> - </html> |
