page.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{{ title }} - {{ subtitle }}</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width">
  7. <link rel="stylesheet" type="text/css" href="{{ base_path }}/css/style.css">
  8. </head>
  9. <body id="{{ slug }}">
  10. <nav>
  11. <section>
  12. <span class="home">
  13. <a href="{{ base_path }}/en">Home</a>
  14. </span>
  15. <span class="links">
  16. <a href="{{ base_path }}/en/download/">Download</a>
  17. <a href="{{ base_path }}/en/doc/">Doc</a>
  18. <a href="https://mls.akdeniz.edu.tr/git/milislinux/milis21">Code</a>
  19. <a href="https://mls.akdeniz.edu.tr/forum/forum">Forum</a>
  20. <a href="{{ base_path }}/en/blog/">Blog</a>
  21. <!-- <a href="{{ base_path }}/paketler21/">Paketler</a> -->
  22. <a href="{{ base_path }}/en/about/">About</a>
  23. <a href="{{ base_path }}/en/contact/">Contact</a>
  24. </span>
  25. </section>
  26. </nav>
  27. <main>
  28. {{ content }}
  29. </main>
  30. <footer>
  31. <section>
  32. <p>
  33. <p>&copy; Milis Linux {{ current_year }} </p>
  34. <p>This site is hosted by Akdeniz University. The site content can be used with citing.
  35. Linux® is a registered trademark of Linus Torvalds. (<a href="http://www.linuxfoundation.org/programs/legal/trademark/attribution">info</a>)
  36. </p>
  37. <p><a href="{{ base_path }}/">Turkish Site</a></p>
  38. </p>
  39. </section>
  40. </footer>
  41. </body>
  42. </html>