default.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <!DOCTYPE html>
  2. <html lang="{{ site.lang | default: " en-US" }}">
  3. <head>
  4. {% if site.google_analytics %}
  5. <script src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}" async></script>
  6. <script>
  7. window.dataLayer = window.dataLayer || [];
  8. function gtag(){dataLayer.push(arguments);}
  9. gtag('js', new Date());
  10. gtag('config', '{{ site.google_analytics }}');
  11. </script>
  12. {% endif %}
  13. <!-- Fathom - simple website analytics - https://github.com/usefathom/fathom -->
  14. <script>
  15. (function(f, a, t, h, o, m){
  16. a[h]=a[h]||function(){
  17. (a[h].q=a[h].q||[]).push(arguments)
  18. };
  19. o=f.createElement('script'),
  20. m=f.getElementsByTagName('script')[0];
  21. o.async=1; o.src=t; o.id='fathom-script';
  22. m.parentNode.insertBefore(o,m)
  23. })(document, window, '//analytics.dreamnet.tech/tracker.js', 'fathom');
  24. fathom('set', 'siteId', 'EQRAS');
  25. fathom('trackPageview');
  26. </script>
  27. <!-- / Fathom -->
  28. <meta charset="UTF-8">
  29. {% seo %}
  30. <meta name="viewport" content="width=device-width, initial-scale=1">
  31. <meta name="theme-color" content="#d67411">
  32. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
  33. <link href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}" rel="stylesheet">
  34. </head>
  35. <body>
  36. <header class="page-header" role="banner">
  37. <h1 class="project-name">{{ page.title | default: site.title | default: site.github.repository_name }}</h1>
  38. <h2 class="project-tagline">{{ page.description | default: site.description | default: site.github.project_tagline }}</h2>
  39. <a class="btn" href="https://dreamnet.tech" target="_blank">DreamNet</a>
  40. <a class="btn" href="#download">Download</a>
  41. {% if site.github.is_project_page %}
  42. <a class="btn" href="{{ site.github.repository_url }}">View on GitHub</a>
  43. {% endif %}
  44. {% if site.show_downloads %}
  45. <a class="btn" href="{{ site.github.zip_url }}">Download .zip</a>
  46. <a class="btn" href="{{ site.github.tar_url }}">Download .tar.gz</a>
  47. {% endif %}
  48. </header>
  49. <main class="main-content" id="content" role="main">
  50. {{ content }}
  51. <footer class="site-footer">
  52. {% if site.github.is_project_page %}
  53. <span class="site-footer-owner"><a href="{{ site.github.repository_url }}">{{ site.github.repository_name }}</a> is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a>.</span>
  54. {% endif %}
  55. <span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a>.</span>
  56. </footer>
  57. </main>
  58. </body>
  59. </html>