Repository with sources and generator of https://larlet.fr/david/ https://larlet.fr/david/
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.

profil.html 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. {% extends "base_2020.html" %}
  2. {% block lang %}fr{% endblock %}
  3. {% block title %}Accueil{% endblock %}
  4. {% block content %}
  5. <template id="theme-selector">
  6. <form>
  7. <fieldset>
  8. <legend>Thème</legend>
  9. <label>
  10. <input type="radio" value="auto" name="chosen-color-scheme" checked> Auto
  11. </label>
  12. <label>
  13. <input type="radio" value="dark" name="chosen-color-scheme"> Foncé
  14. </label>
  15. <label>
  16. <input type="radio" value="light" name="chosen-color-scheme"> Clair
  17. </label>
  18. </fieldset>
  19. </form>
  20. </template>
  21. <article>
  22. <h1>Bienvenue</h1>
  23. <p>
  24. Voici l’espace personnel de David Larlet sur le Web.
  25. Il se veut modeste, accueillant et pérenne.
  26. Il fixe mes pensées et parfois engage des échanges.
  27. J’essaye de tenir et lier des propos bienveillants.
  28. Je vous souhaite une jolie promenade.
  29. </p>
  30. <p lang="en">
  31. For an English profile, check out
  32. <a href="http://larlet.com" data-instant>this page 🇨🇦</a>.
  33. </p>
  34. <h2>Publication récentes</h2>
  35. <nav>
  36. <ul>
  37. {% for page in page_list %}
  38. <li><a href="{{ page.url }}">{{ page.title }}</a> ({{ page.date }})</li>
  39. {% endfor %}
  40. </ul>
  41. </nav>
  42. <h2>Publications anciennes</h2>
  43. <p>
  44. Vous pouvez consulter les différents
  45. <a href="/david/blog/">billets de blog</a> qui ont été rédigés de 2004 à 2019
  46. ou les <a href="/david/stream/">entrées de journaux</a> relativement
  47. régulières entre 2009 et 2019.
  48. </p>
  49. <p>
  50. <em>
  51. Notez qu’avec un tel historique, certaines informations sont obsolètes et/ou
  52. plus cautionnées.
  53. </em>
  54. </p>
  55. <h2>Me contacter</h2>
  56. <p>
  57. Je réponds à <em>presque</em> tous les courriels reçus, exception faite de ceux que j’assimile à de la publicité ou du <code>spam</code>. Vous pouvez <a href="mailto:david%40larlet.fr" title="Envoyer un courriel">m’écrire</a> sans trop de civilités et me tutoyer, je répondrai probablement de même. Si vous souhaitez correspondre de manière chiffrée, voici <a href="/static/david/david-larlet-pgp-public-key-1359EA98.asc" title="Clé publique de chiffrement">ma clé publique</a>.
  58. </p>
  59. </article>
  60. {% endblock content %}
  61. {% block extra_bottom %}
  62. <script type="text/javascript">
  63. /* This is a work in progress with Anthony https://ricaud.me */
  64. // TODISCUSS:
  65. // 1. give a way for the user to close that chooser?
  66. // 2. store preferences? (in a cookie or localstorage or sessionStorage)
  67. // 3. create the template from scratch in JS?
  68. // 4. how to make it generic? (no need for forced-dark/light existing rules)
  69. // Results from a Poll: https://mastodon.social/@dav/104093540923157521
  70. // Avoir un moyen de changer de thème d'un site à la main :
  71. // 49% => Utile
  72. // 23% => Pas utile
  73. // 9% => So 2000
  74. // 19% => Je veux le même
  75. // After 24 hours and 43 votes
  76. // A bit hard to interpret, I guess people wanting it found it useful too!
  77. function loadThemeForm(templateName) {
  78. const themeSelectorTemplate = document.querySelector(templateName)
  79. const form = themeSelectorTemplate.content.firstElementChild
  80. themeSelectorTemplate.replaceWith(form)
  81. form.addEventListener('change', (e) => {
  82. const chosenColorScheme = e.target.value
  83. document.body.classList.toggle(
  84. 'forced-dark',
  85. chosenColorScheme === 'dark'
  86. )
  87. document.body.classList.toggle(
  88. 'forced-light',
  89. chosenColorScheme === 'light'
  90. )
  91. })
  92. }
  93. const prefersColorSchemeDark = '(prefers-color-scheme: dark)'
  94. window.addEventListener('load', () => {
  95. let hasDarkRules = false
  96. for (const styleSheet of Array.from(document.styleSheets)) {
  97. let mediaRules = []
  98. for (const cssRule of styleSheet.cssRules) {
  99. if (cssRule.type !== CSSRule.MEDIA_RULE) {
  100. continue
  101. }
  102. // WARNING: Safari does not have/supports `conditionText`.
  103. if (cssRule.conditionText) {
  104. if (cssRule.conditionText !== prefersColorSchemeDark) {
  105. continue
  106. }
  107. } else {
  108. if (cssRule.cssText.startsWith(prefersColorSchemeDark)) {
  109. continue
  110. }
  111. }
  112. mediaRules = mediaRules.concat(Array.from(cssRule.cssRules))
  113. }
  114. // WARNING: do not try to insert a Rule to a styleSheet you are
  115. // currently iterating on, otherwise the browser will be stuck
  116. // in a infinite loop…
  117. for (const mediaRule of mediaRules) {
  118. styleSheet.insertRule(mediaRule.cssText)
  119. hasDarkRules = true
  120. }
  121. }
  122. if (hasDarkRules) {
  123. loadThemeForm('#theme-selector')
  124. }
  125. })
  126. </script>
  127. {% endblock extra_bottom %}