-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a minimal theme a new project can be started with
- Loading branch information
Showing
14 changed files
with
157 additions
and
45 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
File renamed without changes
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,16 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{site lang}}" style="max-width: 70ch; padding: 3em 1em; margin: auto; font: 1.25em/1.5 sans-serif"> | ||
<head> | ||
<title>{{#parent title}}{{title}} | {{/title parent}}{{site title}}</title> | ||
<meta charset="utf-8"/> | ||
</head> | ||
<body> | ||
{{#current}}<figure> | ||
<img alt="{{alt}}" src="{{file}}" /> | ||
<figcaption>{{caption}}</figcaption> | ||
</figure>{{/current}} | ||
{{#previous}}<a href="{{permalink}}">←</a>{{/previous}} | ||
{{#parent}}<a href="{{permalink}}">{{title}}</a>{{/parent}} | ||
{{#next}}<a href="{{permalink}}">→</a>{{/next}} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{site lang}}" style="max-width: 70ch; padding: 3em 1em; margin: auto; font: 1.25em/1.5 sans-serif"> | ||
<head> | ||
<title>{{#title}}{{title}} | {{/title}}{{site title}}</title> | ||
<meta charset="utf-8"/> | ||
</head> | ||
<body> | ||
<h1>{{title}}</h1> | ||
<p>{{#date}}{{d}}/{{m}}/{{y}} | {{/date}}<a href="{{index permalink}}">{{site title}}</a></p> | ||
{{content}} | ||
{{#pictures}}<a href="{{permalink}}"> | ||
<figure class="small-figure"> | ||
<img alt="{{alt}}" src="{{file}}"/> | ||
<figcaption class="gallery-caption">{{caption}}</figcaption> | ||
</figure> | ||
</a>{{/pictures}} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{site lang}}" style="max-width: 70ch; padding: 3em 1em; margin: auto; font: 1.25em/1.5 sans-serif"> | ||
<head> | ||
<title>{{#title}}{{title}} | {{/title}}{{site title}}</title> | ||
<meta charset="utf-8"/> | ||
</head> | ||
<body> | ||
<h1>{{title}}</h1> | ||
<nav>{{#subsections}}<p><a href="{{permalink}}">{{title}}</a></p>{{/subsections}}</nav> | ||
{{content}} | ||
<nav>{{#pages}}<p>{{#date}}<div>{{d}}/{{m}}/{{y}}</div>{{/date}} | ||
<a href="{{permalink}}">{{title}}</a></p>{{/pages}}</nav> | ||
{{#pictures}}<a href="{{permalink}}"> | ||
<figure class="small-figure"> | ||
<img alt="{{alt}}" src="{{file}}"/> | ||
<figcaption class="gallery-caption">{{caption}}</figcaption> | ||
</figure> | ||
</a>{{/pictures}} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{site lang}}" style="max-width: 70ch; padding: 3em 1em; margin: auto; font: 1.25em/1.5 sans-serif"> | ||
<head> | ||
<title>{{#title}}{{title}} | {{/title}}{{site title}}</title> | ||
<meta charset="utf-8"/> | ||
</head> | ||
<body> | ||
<h1>{{title}}</h1> | ||
{{description}} | ||
<nav>{{#keys}}<p><a href="{{key}}">{{key}}</a></p>{{/keys}}</nav> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{site lang}}" style="max-width: 70ch; padding: 3em 1em; margin: auto; font: 1.25em/1.5 sans-serif"> | ||
<head> | ||
<title>{{#title}}{{title}} | {{/title}}{{site title}}</title> | ||
<meta charset="utf-8"/> | ||
</head> | ||
<body> | ||
<h1>{{taxonomy title}}: {{title}}</h1> | ||
{{#site}}<a href="{{url}}">{{title}}</a>{{/site}} | ||
<nav>{{#pages}}<p>{{#date}}<div>{{d}}/{{m}}/{{y}}</div>{{/date}} | ||
<a href="{{permalink}}">{{title}}</a></p>{{/pages}}</nav> | ||
</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