-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Blueprints, Theme CSS, Twig-injection, README updates, template-improvements, Twig- and class-rendering
- Loading branch information
Showing
7 changed files
with
152 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
# v0.9.1 | ||
## 11-06-2017 | ||
|
||
1. [](#new) | ||
* Initial Blueprints | ||
* Include Theme CSS | ||
* Inject Twig-template | ||
1. [](#improved) | ||
* README | ||
* Blocks in fullpage.html.twig | ||
* Render Twig in Markdown | ||
* Render page's body_classes-property | ||
|
||
# v0.9.0 | ||
## 11/06/2017 | ||
## 11-06-2017 | ||
|
||
1. [](#new) | ||
* Initial beta-release | ||
* Initial release |
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
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,20 +1,26 @@ | ||
{% set theme_config = attribute(config.themes, config.system.pages.theme) %} | ||
<!DOCTYPE html> | ||
<html lang="{{ grav.language.getLanguage ?: 'en' }}"> | ||
{% block head %} | ||
<head> | ||
{% block meta %} | ||
<meta charset="utf-8" /> | ||
<title>{% if header.title %}{{ header.title|e('html') }} | {% endif %}{{ site.title|e('html') }}</title> | ||
{% include 'partials/metadata.html.twig' %} | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> | ||
{% endblock meta %} | ||
<link rel="icon" type="image/png" href="{{ url('theme://images/favicon.png') }}" /> | ||
<link rel="canonical" href="{{ page.url(true, true) }}" /> | ||
{{ assets.css() }} | ||
</head> | ||
{% endblock head %} | ||
|
||
<body> | ||
<body id="top" class="{{ page.header.body_classes }}"> | ||
{% block content %} | ||
<div id="fullpage" class="fullpage"> | ||
{{ page.content }} | ||
</div> | ||
{% endblock content %} | ||
{{ assets.js() }} | ||
</body> | ||
</html> |