Sources du blog ALLELLA
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.
 
 
 
 
 

37 lines
811 B

  1. <!DOCTYPE html>
  2. <html lang="{{ page.lang | default: site.lang | default: "en" }}">
  3. {%- include head.html -%}
  4. <body>
  5. {%- include header.html -%}
  6. <div class="fullscreen logo-home">
  7. <img src="{{ "/assets/images/logo-home.svg" | relative_url }}" alt="Logo Allella"/>
  8. <h2>
  9. services numériques · open source · indépendant
  10. </h2>
  11. </div>
  12. <main class="page-content home-page-content" aria-label="Content">
  13. <div class="wrapper">
  14. {{ content }}
  15. </div>
  16. </main>
  17. {%- include footer.html -%}
  18. </body>
  19. <script>
  20. document.addEventListener('scroll', function(e){
  21. if(window.scrollY === 0)
  22. document.body.classList.remove('scrolled');
  23. else {
  24. document.body.classList.add('scrolled');
  25. }
  26. })
  27. </script>
  28. </html>