Skip to content

Commit

Permalink
feat: add manifest declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
adrien-chinour committed Apr 2, 2024
1 parent f96b58a commit 42cd26b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions templates/base.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@

<title>{% block title %}{{ site.name }}{% endblock %}</title>

<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>𓀌</text></svg>">

{{ encore_entry_link_tags('app') }}
{% block stylesheets %}{% endblock %}

Expand All @@ -20,6 +17,10 @@

<link rel="alternate" type="application/rss+xml" href="{{ url('rss_feed') }}" title="{{ site.name }} - RSS Feed">
<link rel="canonical" href="{{ app.request.uri }}" />

<link rel="manifest" href="/manifest.json">
<link rel="icon" href="/images/icons/icon-72x72.png">

</head>
<body class="dark:bg-zinc-800 dark:text-zinc-100 container mx-auto max-w-7xl">
{% block body %}{% endblock %}
Expand Down

0 comments on commit 42cd26b

Please sign in to comment.