Skip to content

Commit 18f9d7c

Browse files
committed
Use SVG logo in header and as favicon
1 parent 3821e0b commit 18f9d7c

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

static/favicon.svg

+1
Loading

static/logo.svg

+1
Loading

templates/includes/header.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<header class="site-header">
22
<div class="wrapper">
33
<a class="site-title" rel="author" href="/">
4-
<img src="{{ get_url(path='logo_small.png') }}" width="48" height="48" alt="" />
4+
<img src="{{ get_url(path='logo.svg') }}" width="48" height="48" alt="" />
55
{{ config.title | default(value="Minima") }}
66
</a>
77

templates/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@
2323
<link rel="canonical" href="{{ get_url(path='/' )}}">
2424
{% endblock seo %}
2525

26-
<meta property="og:image" content="{{ get_url(path='logo.png') }}">
26+
<meta property="og:image" content="{{ get_url(path='logo.svg') }}">
2727
<meta property="og:image:width" content="200">
2828
<meta property="og:image:height" content="200">
2929
<meta property="og:site_name" content="{{ config.title | default(value="Minima") }}">
3030

3131
<link rel="stylesheet" href="{{ get_url(path="style.css") }}">
3232
<link rel="apple-touch-icon" sizes="180x180" href="{{ get_url(path='apple-touch-icon.png') }}">
33+
<link rel="icon" type="image/svg+xml" href="{{get_url(path="favicon.svg")}}">
3334
<link rel="icon" type="image/png" sizes="32x32" href="{{ get_url(path="favicon-32x32.png") }}">
3435
<link rel="icon" type="image/png" sizes="16x16" href="{{ get_url(path="favicon-16x16.png") }}">
3536
<link rel="manifest" href="{{ get_url(path="site.webmanifest") }}">

0 commit comments

Comments
 (0)