Compare commits
No commits in common. "48ab217a9ca35f2e0080a0806f9bfc35c0307138" and "44176dc8c3fb00d0c9031b9c0db0d9cf4d6ebed1" have entirely different histories.
48ab217a9c
...
44176dc8c3
3 changed files with 20 additions and 3 deletions
|
@ -2,9 +2,6 @@ title: dot/dots
|
|||
email: dani@00dani.me
|
||||
description: "Bootstrap and simple management script for my dotfiles"
|
||||
github_username: 00dani
|
||||
mastodon:
|
||||
- username: 00dani
|
||||
instance: vulpine.club
|
||||
url: 'https://dots.00dani.me'
|
||||
|
||||
# Build settings
|
||||
|
|
20
site/_includes/head.html
Normal file
20
site/_includes/head.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
||||
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
|
||||
|
||||
{% assign full_base_url = '' %}
|
||||
{% if jekyll.environment == 'production' %}
|
||||
{% assign full_base_url = site.url | append: site.baseurl %}
|
||||
{% endif %}
|
||||
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: full_base_url }}">
|
||||
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: full_base_url }}">
|
||||
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | prepend: full_base_url }}">
|
||||
|
||||
{% if jekyll.environment == 'production' and site.google_analytics %}
|
||||
{% include google-analytics.html %}
|
||||
{% endif %}
|
||||
</head>
|
Loading…
Reference in a new issue