SEO bits. styling bits, nvmrc
This commit is contained in:
parent
363014ae07
commit
f9f29d6be7
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"title": "Rik Berkelder",
|
||||
"url": "https://riksolo.com",
|
||||
"author": "Rik Berkelder"
|
||||
}
|
|
@ -4,6 +4,7 @@ title: "Opinions on the Shure SE215 In-Ear Monitors"
|
|||
date: "2021-04-22"
|
||||
modified: "2021-04-23"
|
||||
description: "Personal thoughts on a pair of in-ears I bought."
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
<span class="text-sm">Disclaimer: This should not be trusted as a review. While I enjoy good audio, I am by no means an expert.</span>
|
||||
|
||||
|
|
|
@ -21,7 +21,20 @@
|
|||
<meta name="language" content="English" />
|
||||
<meta name="google-site-verification" content="x17arJy33V33DYnmMYybZciXngFd8R8xn1UZRdp7qxo" />
|
||||
|
||||
<title>{% if title %}{{title}} | {% endif %}Rik Berkelder</title>
|
||||
<link rel="canonical" href="{{site.url}}{{page.url | url}}" />
|
||||
|
||||
{%if tags.includes("blogpost")%}
|
||||
<meta property="og:type" content="article" />
|
||||
{%if description %}
|
||||
<meta property="og:description" content="{{description}}" />
|
||||
{% endif %}
|
||||
<meta property="og:title" content="{{title}}" />
|
||||
<meta property="og:url" content="{{site.url}}{{page.url | url}}" />
|
||||
<meta property="og:sitename" content="{{site.title}}" />
|
||||
<meta property="og:image" content="{{site.url}}/img/RB-w.png" />
|
||||
{%endif%}
|
||||
|
||||
<title>{% if title %}{{title}} | {% endif %}{{site.title}}</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
Sitemap: https://riksolo.com/sitemap.xml
|
||||
|
||||
User-agent: *
|
||||
Disallow:
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
permalink: /sitemap.xml
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
{% for page in collections.all %}
|
||||
{% if not page.data.draft %}
|
||||
<url>
|
||||
<loc>{{ site.url }}{{ page.url | url }}</loc>
|
||||
<lastmod>{{ page.date.toISOString() }}</lastmod>
|
||||
<changefreq>{{ page.data.changeFreq if page.data.changeFreq else "monthly" }}</changefreq>
|
||||
</url>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</urlset>
|
|
@ -56,6 +56,30 @@ body {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
ol:not(ol *, ul *),
|
||||
ul:not(ol *, ul *) {
|
||||
margin-left: 0rem;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
ol p,
|
||||
ul p {
|
||||
margin: 0.3rem 0rem;
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style-type: decimal;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: none;
|
||||
|
||||
li::before {
|
||||
content: "- "
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -148,3 +172,7 @@ img {
|
|||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
ul.list-dash>li::before {
|
||||
content: "- "
|
||||
}
|
|
@ -28,6 +28,8 @@ export default async function (eleventyConfig) {
|
|||
|
||||
//Images
|
||||
eleventyConfig.addPlugin(eleventyImageTransformPlugin);
|
||||
|
||||
eleventyConfig.addPassthroughCopy("content/robots.txt");
|
||||
}
|
||||
|
||||
export const config = {
|
||||
|
|
Loading…
Reference in New Issue