templates/base.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <link rel="stylesheet" type="text/css" href="/style.css"> <title>The Apocyphon of Gio</title> {% block rss %} <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml", trailing_slash=false) }}"> {% endblock %} </head> <body> <div class="outline"> <a class="root_link" href="/"> <img src="/placeholder.jpg" alt="this links to the homepage btw" width="300" height="450"> </a> <br> {% block outline %} {% endblock %} </div> <main> <h1> {% block title %} {% endblock %} </h1> <article> {% block content %} {% endblock %} </article> </main> <footer> <a href="/rss.xml"> RSS feed </a> </footer> </body> </html> |