Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
semanticdata authored May 11, 2024
1 parent f8d290b commit 5dd1ba5
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 46 deletions.
7 changes: 6 additions & 1 deletion sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ header {
body {
background-color: #fff;
padding: 50px;
font: 14px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font:
14px/1.5 "Noto Sans",
"Helvetica Neue",
Helvetica,
Arial,
sans-serif;
color: #222;
font-weight: 400;
}
Expand Down
12 changes: 10 additions & 2 deletions sass/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,16 @@ $font-color-small: #777;
$font-color-code: #333;
$font-size-small: 11px;
$font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
$font-family-code: Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal,
Consolas, Liberation Mono, DejaVu Sans Mono, Courier New, monospace;
$font-family-code:
Monaco,
Bitstream Vera Sans Mono,
Lucida Console,
Terminal,
Consolas,
Liberation Mono,
DejaVu Sans Mono,
Courier New,
monospace;

$media-max-width: 960px;
$media-max-width-smaller: 720px;
Expand Down
106 changes: 63 additions & 43 deletions templates/base.html
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> &mdash; 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> &mdash; 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>

0 comments on commit 5dd1ba5

Please sign in to comment.