init
This commit is contained in:
commit
c021228161
24 changed files with 1509 additions and 0 deletions
27
sites/jekyll-source/_layouts/default.html
Normal file
27
sites/jekyll-source/_layouts/default.html
Normal file
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="{{ site.lang | default: "en-US" }}">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% if page.title %}{{ page.title | escape }} - {{ site.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
||||
<meta name="description" content="{{ page.description | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
|
||||
<link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
|
||||
{% feed_meta %}
|
||||
{% seo %}
|
||||
{% include analytics/umami.html %}
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1><a href="{{ "/" | relative_url }}">{{ site.title | escape }}</a></h1>
|
||||
<p>{{ site.tagline | escape }}</p>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
{{ content }}
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>© {{ site.time | date: '%Y' }} {{ site.author.name | default: site.title }}</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue