aboutsummaryrefslogtreecommitdiff
path: root/src/templates
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2020-11-22 19:37:10 -0600
committerMark Powers <markppowers0@gmail.com>2020-11-22 19:37:10 -0600
commitc18dd9ef6c9b3407862db7f01372bc65bb1c3721 (patch)
treee4dfd6e1dfb744b0266b97679059712875ef741c /src/templates
parent63668ca89f055b2233a8aa6caf4213853918d68d (diff)
Add svg favicon
Diffstat (limited to 'src/templates')
-rw-r--r--src/templates/blog-single.html6
-rw-r--r--src/templates/blog.html6
-rw-r--r--src/templates/bread.html7
-rw-r--r--src/templates/header.html5
-rw-r--r--src/templates/index.html6
-rw-r--r--src/templates/misc.html6
-rw-r--r--src/templates/projects.html5
7 files changed, 17 insertions, 24 deletions
diff --git a/src/templates/blog-single.html b/src/templates/blog-single.html
index 8622007..10012b6 100644
--- a/src/templates/blog-single.html
+++ b/src/templates/blog-single.html
@@ -3,10 +3,8 @@
<head>
<title>Mark's Kitchen - Blog</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="/css/styles.css">
- <link rel="shortcut icon" href="/favicon.ico">
+ {{> header}}
</head>
<body>
@@ -20,4 +18,4 @@
{{> footer}}
</body>
-</html> \ No newline at end of file
+</html>
diff --git a/src/templates/blog.html b/src/templates/blog.html
index 40b86f5..1c097c0 100644
--- a/src/templates/blog.html
+++ b/src/templates/blog.html
@@ -3,10 +3,8 @@
<head>
<title>Mark's Kitchen - Blog</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="/css/styles.css">
- <link rel="shortcut icon" href="/favicon.ico">
+ {{> header}}
</head>
<body>
@@ -19,4 +17,4 @@
{{> footer}}
</body>
-</html> \ No newline at end of file
+</html>
diff --git a/src/templates/bread.html b/src/templates/bread.html
index b5d02ed..88a5528 100644
--- a/src/templates/bread.html
+++ b/src/templates/bread.html
@@ -1,12 +1,9 @@
<!doctype html>
<html lang="en">
-
<head>
<title>Mark's Kitchen - Bread</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+ {{> header}}
<link rel="stylesheet" type="text/css" href="/css/styles.css">
- <link rel="shortcut icon" href="/favicon.ico">
</head>
<body>
@@ -20,4 +17,4 @@
{{> footer}}
</body>
-</html> \ No newline at end of file
+</html>
diff --git a/src/templates/header.html b/src/templates/header.html
new file mode 100644
index 0000000..2ceebfd
--- /dev/null
+++ b/src/templates/header.html
@@ -0,0 +1,5 @@
+<meta charset="UTF-8">
+<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+<link rel="icon" href="/favicon.svg">
+<link rel="alternate icon" href="/favicon.ico">
+
diff --git a/src/templates/index.html b/src/templates/index.html
index efb7369..6ba3d5a 100644
--- a/src/templates/index.html
+++ b/src/templates/index.html
@@ -3,11 +3,9 @@
<head>
<title>Mark's Kitchen</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="/css/styles.css">
- <link rel="shortcut icon" href="/favicon.ico">
<link rel="alternate" type="application/rss+xml" title="RSS Feed for marks.kitchen" href="/feed.xml" />
+ {{> header}}
</head>
<body>
@@ -17,4 +15,4 @@
{{> footer}}
</body>
-</html> \ No newline at end of file
+</html>
diff --git a/src/templates/misc.html b/src/templates/misc.html
index 9fb376a..ee641d1 100644
--- a/src/templates/misc.html
+++ b/src/templates/misc.html
@@ -3,10 +3,8 @@
<head>
<title>Mark's Kitchen</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="/css/styles.css">
- <link rel="shortcut icon" href="/favicon.ico">
+ {{> header}}
</head>
<body>
@@ -27,4 +25,4 @@
</nav>
</body>
-</html> \ No newline at end of file
+</html>
diff --git a/src/templates/projects.html b/src/templates/projects.html
index cf3361a..0ca8efa 100644
--- a/src/templates/projects.html
+++ b/src/templates/projects.html
@@ -3,9 +3,8 @@
<head>
<title>Mark's Kitchen - Projects</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="/css/styles.css">
+ {{> header}}
</head>
<body>
@@ -284,4 +283,4 @@
</div>
</body>
-</html> \ No newline at end of file
+</html>