This is a gentle fork from https://framagit.org/marienfressinaud/photos.marienfressinaud.fr with a responsive and optimized mindset. https://media.larlet.fr/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

base.html.j2 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!doctype html><!-- This is a valid HTML5 document. -->
  2. <!-- Screen readers, SEO, extensions and so on. -->
  3. <html lang="{% block lang %}fr{% endblock lang %}">
  4. <head>
  5. <!-- Has to be within the first 1024 bytes, hence before the `title` element
  6. See: https://www.w3.org/TR/2012/CR-html5-20121217/document-metadata.html#charset -->
  7. <meta charset="utf-8">
  8. <!-- Why no `X-UA-Compatible` meta: https://stackoverflow.com/a/6771584 -->
  9. <!-- The viewport meta is quite crowded and we are responsible for that.
  10. See: https://codepen.io/tigt/post/meta-viewport-for-2015 -->
  11. <meta name="viewport" content="width=device-width,initial-scale=1">
  12. <!-- Required to make a valid HTML5 document. -->
  13. <title>{% block title %}{% endblock %} — David Larlet</title>
  14. <!-- Source : https://favicon.io/emoji-favicons/camera -->
  15. <!-- The emoji graphics are from the open source project Twemoji.
  16. The graphics are copyright 2020 Twitter, Inc and other contributors.
  17. The graphics are licensed under CC-BY 4.0. -->
  18. <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
  19. <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
  20. <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
  21. <link rel="manifest" href="/site.webmanifest">
  22. <link rel="stylesheet" href="style/main.css">
  23. {% block extra_head %}{% endblock %}
  24. </head>
  25. <body>
  26. <main>
  27. <div class="container">
  28. {% block container %}{% endblock %}
  29. </div>
  30. </main>
  31. <footer>
  32. <hr>
  33. <p class="u-center">
  34. &copy;
  35. <a href="https://larlet.fr/david/" title="Site principal">David Larlet</a>
  36. -
  37. <a href="mailto:david%40larlet.fr" title="Envoyer un courriel">Demandez pour une réutilisation</a>, ça me permettra de vous fournir une meilleure qualité 🤗.
  38. </p>
  39. </footer>
  40. {% block extra_bottom %}{% endblock %}
  41. </body>