forked from pages-themes/minimal
-
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.
- Loading branch information
1 parent
f8d290b
commit 5dd1ba5
Showing
3 changed files
with
79 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,72 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-US"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>{% block title %}{{ config.title }}{% endblock title %}</title> | ||
<meta | ||
name="description" | ||
itemprop="about" | ||
content="{{config.description}}" | ||
/> | ||
<link rel="stylesheet" href="{{ get_url(path='styles.css') | safe }}" /> | ||
</head> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>{% block title %}{{ config.title }}{% endblock title %}</title> | ||
<meta name="description" itemprop="about" content="{{config.description}}"> | ||
<link rel="stylesheet" href="{{ get_url(path='styles.css') | safe }}"> | ||
</head> | ||
<body> | ||
<div class="wrapper"> | ||
<header> | ||
<a href="{{ get_url(path='/') | safe }}"> | ||
<img | ||
src="{{ get_url(path='img/logo.png') | safe }}" | ||
class="site-logo" | ||
alt="Logo" | ||
width="275px" | ||
height="auto" | ||
/></a> | ||
|
||
<body> | ||
<div class="wrapper"> | ||
<p>{{ config.description }}</p> | ||
|
||
<header> | ||
<a href="{{ get_url(path='/') | safe }}"> | ||
<img src="{{ get_url(path='img/logo.png') | safe }}" class="site-logo" alt="Logo" width="275px" | ||
height="auto" /></a> | ||
<p class="view" | ||
><a href="https://github.com/semanticdata/project" | ||
>View the project on GitHub. | ||
<small>semanticdata/zola-minimal</small></a | ||
></p | ||
> | ||
|
||
<p>{{ config.description }}</p> | ||
<p class="view" | ||
><a href="https://github.com/semanticdata/" | ||
>View my profile on GitHub. <small>semanticdata</small></a | ||
></p | ||
> | ||
|
||
<p class="view"><a href="https://github.com/semanticdata/project">View the project on GitHub. | ||
<small>semanticdata/zola-minimal</small></a></p> | ||
<ul class="downloads"> | ||
<li | ||
><a href="./">Download <strong>ZIP File</strong></a></li | ||
> | ||
<li | ||
><a href="./">Download <strong>TAR Ball</strong></a></li | ||
> | ||
<li | ||
><a href="./">View On <strong>GitHub</strong></a></li | ||
> | ||
</ul> | ||
</header> | ||
|
||
<p class="view"><a href="https://github.com/semanticdata/">View my profile on GitHub. | ||
<small>semanticdata</small></a></p> | ||
<section> {% block content %} {% endblock content %} </section> | ||
|
||
<ul class="downloads"> | ||
<li><a href="./">Download <strong>ZIP File</strong></a></li> | ||
<li><a href="./">Download <strong>TAR Ball</strong></a></li> | ||
<li><a href="./">View On <strong>GitHub</strong></a></li> | ||
</ul> | ||
</header> | ||
|
||
<section> | ||
{% block content %} | ||
{% endblock content %} | ||
</section> | ||
|
||
<footer> | ||
<p><small> | ||
Powered by <a href="https//www.getzola.org/">Zola</a> — Themed with <a | ||
href="https://github.com/semanticdata/zola-minimal/">Minimal</a>.<br> | ||
Project maintained by <a href="https://miguelpimentel.do">Miguel Pimentel</a>. | ||
</small></p> | ||
</footer> | ||
|
||
</div> | ||
</body> | ||
|
||
</html> | ||
<footer> | ||
<p | ||
><small> | ||
Powered by <a href="https//www.getzola.org/">Zola</a> — Themed | ||
with | ||
<a href="https://github.com/semanticdata/zola-minimal/">Minimal</a | ||
>.<br /> | ||
Project maintained by | ||
<a href="https://miguelpimentel.do">Miguel Pimentel</a>. | ||
</small></p | ||
> | ||
</footer> | ||
</div> | ||
</body> | ||
</html> |