Skip to content

Commit

Permalink
chore(website): add theme-color meta tags
Browse files Browse the repository at this point in the history
  • Loading branch information
gabeidx committed Jul 22, 2022
1 parent 33d1b88 commit e8a2dac
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion website/pages/_layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<meta name="description" content="{{ meta_description }}" />
<link rel="canonical" href="{{ canonical }}" />
<meta name="apple-mobile-web-app-title" content="Atlas Framework" />
<meta name="application-name" content="Atlas Framework" />
<!-- open graph -->
<meta property="og:type" content="{{ og_type }}" />
<meta property="og:url" content="{{ canonical }}" />
Expand All @@ -31,7 +33,9 @@
<link rel="manifest" href="/public/site.webmanifest">
<meta name="msapplication-config" content="/public/browserconfig.xml">
<meta name="msapplication-TileColor" content="#eab308">
<meta name="theme-color" content="#ffffff">
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#171717" media="(prefers-color-scheme: dark)" />
<meta name="msapplication-TileColor" content="#eab308" />
<!-- tailwind -->
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio,line-clamp"></script>
<script>
Expand Down

0 comments on commit e8a2dac

Please sign in to comment.