this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

now it should be fixed

Altagos 601f1f7c 7935363f

+14 -14
+14 -13
src/_includes/layouts/root.njk
··· 1 1 <!DOCTYPE html> 2 2 <html lang="{{ metas.lang }}"> 3 - <div class="page-container"> 4 - <head> 5 - <meta charset="UTF-8"> 6 - <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 - <title>{{ metas.title or title }} | Altagos</title> 8 3 9 - <link rel="stylesheet" href="/altagos.css"> 4 + <head> 5 + <meta charset="UTF-8"> 6 + <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 + <title>{{ metas.title or title }} | Altagos</title> 10 8 11 - <link rel="preload" href="/assets/highlight/tomorrow-night.css" as="style" onload="this.onload=null;this.rel='stylesheet'"> 12 - <noscript><link rel="stylesheet" href="/assets/highlight/tomorrow-night.css"></noscript> 9 + <link rel="stylesheet" href="/altagos.css"> 10 + 11 + <link rel="preload" href="/assets/highlight/tomorrow-night.css" as="style" onload="this.onload=null;this.rel='stylesheet'"> 12 + <noscript><link rel="stylesheet" href="/assets/highlight/tomorrow-night.css"></noscript> 13 13 14 - <script defer src="/assets/highlight/highlight.min.js" onload="hljs.highlightAll()"></script> 15 - </head> 16 - <body> 14 + <script defer src="/assets/highlight/highlight.min.js" onload="hljs.highlightAll()"></script> 15 + </head> 16 + <body> 17 + <div class="page-container"> 17 18 <main> 18 19 {{ comp.Header({title: metas.title, note: metas.note}) | safe }} 19 20 <content> ··· 22 23 </main> 23 24 24 25 {% include "layouts/footer.njk" %} 25 - </body> 26 - </div> 26 + </div> 27 + </body> 27 28 </html>
-1
src/_includes/sass/root.scss
··· 18 18 body, 19 19 .page-container { 20 20 height: 100%; 21 - width: 100%; 22 21 margin: 0; 23 22 padding: 0; 24 23 }