-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using deep data merge (post tag is inherited from posts/posts.json) a…
…nd updates to use 0.7.0.
- Loading branch information
Showing
11 changed files
with
51 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,39 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>{{ renderData.title or title or metadata.title }}</title> | ||
<link rel="stylesheet" href="{{ '/css/index.css' | url }}"> | ||
<link rel="stylesheet" href="{{ '/css/prism-base16-monokai.dark.css' | url }}"> | ||
<link rel="alternate" href="{{ metadata.feed.path | url }}" type="application/atom+xml" title="{{ metadata.title }}"> | ||
</head> | ||
<body> | ||
<header> | ||
<h1 class="home"><a href="{{ '/' | url }}">{{ metadata.title }}</a></h1> | ||
<ul class="nav"> | ||
{%- for nav in collections.nav | reverse -%} | ||
<li class="nav-item{% if nav.url == page.url %} nav-item-active{% endif %}"><a href="{{ nav.url | url }}">{{ nav.data.navtitle }}</a></li> | ||
{%- endfor -%} | ||
</ul> | ||
</header> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>{{ renderData.title or title or metadata.title }}</title> | ||
<meta name="Description" content="{{ renderData.description or description or metadata.description }}"> | ||
<link rel="stylesheet" href="{{ '/css/index.css' | url }}"> | ||
<link rel="stylesheet" href="{{ '/css/prism-base16-monokai.dark.css' | url }}"> | ||
<link rel="alternate" href="{{ metadata.feed.path | url }}" type="application/atom+xml" title="{{ metadata.title }}"> | ||
</head> | ||
<body> | ||
<header> | ||
<h1 class="home"><a href="{{ '/' | url }}">{{ metadata.title }}</a></h1> | ||
<ul class="nav"> | ||
{%- for nav in collections.nav | reverse -%} | ||
<li class="nav-item{% if nav.url == page.url %} nav-item-active{% endif %}"><a href="{{ nav.url | url }}">{{ nav.data.navtitle }}</a></li> | ||
{%- endfor -%} | ||
</ul> | ||
</header> | ||
|
||
<main{% if templateClass %} class="{{ templateClass }}"{% endif %}> | ||
<div class="warning"> | ||
<ol> | ||
<li>Edit the <code>_data/metadata.json</code> with your blog’s information.</li> | ||
<li>(Optional) Edit <code>.eleventy.js</code> with your configuration preferences.</li> | ||
<li>Delete this message from <code>_includes/layouts/base.njk</code>.</li> | ||
</ol> | ||
<p><em>This is an <a href="https://www.11ty.io/">Eleventy project</a> created from the <a href="https://github.com/11ty/eleventy-base-blog"><code>eleventy-base-blog</code> repo</a>.</em></p> | ||
</div> | ||
<main{% if templateClass %} class="{{ templateClass }}"{% endif %}> | ||
<div class="warning"> | ||
<ol> | ||
<li>Edit the <code>_data/metadata.json</code> with your blog’s information.</li> | ||
<li>(Optional) Edit <code>.eleventy.js</code> with your configuration preferences.</li> | ||
<li>Delete this message from <code>_includes/layouts/base.njk</code>.</li> | ||
</ol> | ||
<p><em>This is an <a href="https://www.11ty.io/">Eleventy project</a> created from the <a href="https://github.com/11ty/eleventy-base-blog"><code>eleventy-base-blog</code> repo</a>.</em></p> | ||
</div> | ||
|
||
{{ content | safe }} | ||
</main> | ||
{{ content | safe }} | ||
</main> | ||
|
||
<footer></footer> | ||
<footer></footer> | ||
|
||
<!-- Current page: {{ page.url | url }} --> | ||
</body> | ||
<!-- Current page: {{ page.url | url }} --> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"tags": [ | ||
"posts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters