-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
114 additions
and
105 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
<####################################################################### | ||
# Content | ||
######################################################################> | ||
######################################################################>& | ||
<article class="$content"> | ||
{{.page._content}} | ||
</article> | ||
<# | ||
vim:ts=2:sw=2:ai:et:fileencoding=utf8:syntax=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 |
---|---|---|
@@ -1,11 +1,10 @@ | ||
<####################################################################### | ||
# Footer | ||
######################################################################> | ||
######################################################################>& | ||
<footer class="#footer"> | ||
<%include blocks/license/markup.html>& | ||
<%include blocks/repository/markup.html>& | ||
</footer> | ||
<# | ||
vim:ts=2:sw=2:ai:et:fileencoding=utf8:syntax=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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<####################################################################### | ||
# License | ||
######################################################################> | ||
######################################################################>& | ||
<section class="license"> | ||
{{.snippets.footer}} | ||
</section> | ||
<# | ||
vim:ts=2:sw=2:ai:et:fileencoding=utf8:syntax=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 |
---|---|---|
@@ -1,8 +1,7 @@ | ||
<####################################################################### | ||
# Logo | ||
######################################################################> | ||
######################################################################>& | ||
<span class="logo"><a href="index.html">{{.site.logo}}</a><span class="logo__version">v<%include ../VERSION></span></span> | ||
<# | ||
vim:ts=2:sw=2:ai:et:fileencoding=utf8:syntax=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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<####################################################################### | ||
# Menu Bar | ||
######################################################################> | ||
######################################################################>& | ||
<ol class="menu-bar"> | ||
{% .site.menu[] %} | ||
<li class='menu-bar__item {{if .path==$M.page._path then "menu-bar__item--current" else "" end}}'> | ||
<li class='menu-bar__item {{if .path==$M.page._path then "menu-bar__item_current" else "" end}}'> | ||
<a href="{{.URL}}">{{.name}}</a> | ||
</li> | ||
{% end %} | ||
</ol> | ||
<# | ||
vim:ts=2:sw=2:ai:et:fileencoding=utf8:syntax=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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
<####################################################################### | ||
# Toc | ||
######################################################################> | ||
######################################################################>& | ||
<nav class="#panel -side-right toc"> | ||
<p class="toc__title">{{.snippets."toc-title"}}</p> | ||
{{.page._toc}} | ||
</nav> | ||
<# | ||
vim:ts=2:sw=2:ai:et:fileencoding=utf8:syntax=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 |
---|---|---|
@@ -1,29 +1,30 @@ | ||
<# | ||
# Template example | ||
#> | ||
#>& | ||
|
||
```html | ||
``` | ||
<html lang='{{.page.lang//.site.lang}}'> | ||
<head> | ||
<title>{{.page.title | gsub("<[^>]*>"; "")}}</title> | ||
{# include files in preprocessing stage #} | ||
{# include files in preprocessing stage: #} | ||
<%include "head.html"> | ||
<meta name="generator" content="jqt v<%include "../VERSION">"/> | ||
{# optional line #} | ||
{# optional line: #} | ||
<meta name='dcterms.modified' content='{{.page.updated//empty}}' /> | ||
{# implicit loop for all authors #} | ||
{# implicit loop for all authors: #} | ||
{% .page.author | sort[] %}<meta name='author' content='{{.}}' /> | ||
</head> | ||
<body> | ||
<h1>{{.page.title}}</h1> | ||
<div id="CONTENT"> | ||
{{.page._content}} | ||
</div> | ||
{# macro calls: #} | ||
<%partial analytics 'UA-82432866-1'> | ||
</body> | ||
</html> | ||
``` | ||
|
||
<# | ||
vim:ts=4:sw=4:ai:et:fileencoding=utf8:syntax=markdown | ||
#> | ||
#>& |
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
Oops, something went wrong.