diff options
| author | Xe Iaso <me@xeiaso.net> | 2023-12-03 14:06:51 -0500 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2023-12-03 14:06:51 -0500 |
| commit | c84f87eeef75e93423258035517a5c39a3102333 (patch) | |
| tree | 902a0df145544649212d3c5dd5bc0a14e5cc17e0 | |
| parent | 15bc0414cb4700bd8206aa81d7b955f534ce5b9c (diff) | |
| download | xesite-c84f87eeef75e93423258035517a5c39a3102333.tar.xz xesite-c84f87eeef75e93423258035517a5c39a3102333.zip | |
_includes/base: fix site width on iPads held vertically
Signed-off-by: Xe Iaso <me@xeiaso.net>
| -rw-r--r-- | lume/src/_includes/base.njk | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/lume/src/_includes/base.njk b/lume/src/_includes/base.njk index 95b8191..1631684 100644 --- a/lume/src/_includes/base.njk +++ b/lume/src/_includes/base.njk @@ -56,16 +56,16 @@ la budza pu cusku lu <link rel="alternate" type="application/rss+xml" href="https://xeiaso.net/blog.rss"/> <link rel="alternate" type="application/json" href="https://xeiaso.net/blog.json"/> - <link rel="apple-touch-icon" sizes="180x180" href="/static/favicon/apple-icon-180x180.png" /> - <link rel="icon" type="image/png" sizes="192x192" href="/static/favicon/android-icon-192x192.png" /> - <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon/favicon-32x32.png" /> - <link rel="icon" type="image/png" sizes="96x96" href="/static/favicon/favicon-96x96.png" /> - <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon/favicon-16x16.png" /> - <link rel="icon" href="/favicon.ico?v=2" /> - <link rel="manifest" href="/static/manifest.json" /> - <meta name="theme-color" content="#ffffff" /> + <link rel="apple-touch-icon" sizes="180x180" href="/static/favicon/apple-icon-180x180.png"/> + <link rel="icon" type="image/png" sizes="192x192" href="/static/favicon/android-icon-192x192.png"/> + <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon/favicon-32x32.png"/> + <link rel="icon" type="image/png" sizes="96x96" href="/static/favicon/favicon-96x96.png"/> + <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon/favicon-16x16.png"/> + <link rel="icon" href="/favicon.ico?v=2"/> + <link rel="manifest" href="/static/manifest.json"/> + <meta name="theme-color" content="#ffffff"/> - <link rel="canonical" href="https://xeiaso.net/{{ url }}" /> + <link rel="canonical" href="https://xeiaso.net/{{ url }}"/> {% if title %} <title>{{ title }} - Xe Iaso</title> @@ -80,11 +80,11 @@ la budza pu cusku lu {% if hero %} <meta property="og:image" content="https://cdn.xeiaso.net/file/christine-static/hero/{{ hero.file }}.jpg"/> <meta property="twitter:image" content="https://cdn.xeiaso.net/file/christine-static/hero/{{ hero.file }}.jpg"/> - <meta name="twitter:card" content="summary_large_image" /> + <meta name="twitter:card" content="summary_large_image"/> {% endif %} </head> - <body class="px-4 py-2 mx-auto bg-bg-hard dark:bg-bgDark-hard text-fg-0 dark:text-fgDark-0 lg:max-w-5xl max-w-xl"> + <body class="px-4 py-2 mx-auto bg-bg-hard dark:bg-bgDark-hard text-fg-0 dark:text-fgDark-0 lg:max-w-5xl"> <header> <nav class="flex flex-wrap items-center w-full py-4 md:py-0 px-4 text-lg text-fg-1 dark:text-fgDark-1 bg-bg-soft dark:bg-bgDark-soft"> @@ -170,7 +170,10 @@ la budza pu cusku lu href="https://patreon.com/cadey">Patreon</a> like <a href="/patrons">these awesome people</a>!</p> </div> <div class="flex items-center justify-center border-fg-3 dark:border-fgDark-3 lg:justify-between"> - <p>Served by xesite v4 ({{argv[0]}}) with site version {% if commit.hash != "development" %}<a href="https://github.com/Xe/site/commit/{{commit.hash}}">{{commit.hash.substr(0, 8)}}</a>{% else %}{{commit.hash}}{% endif %}, source code available <a href="https://github.com/Xe/site">here</a>.</p> + <p>Served by xesite v4 ({{argv[0]}}) with site version {% if commit.hash != "development" %} + <a href="https://github.com/Xe/site/commit/{{commit.hash}}">{{commit.hash.substr(0, 8)}}</a> + {% else %}{{commit.hash}} + {% endif %}, source code available <a href="https://github.com/Xe/site">here</a>.</p> </div> </footer> - </body> + </body>
\ No newline at end of file |
