basics_01 #1
@ -1,7 +1,5 @@
|
|||||||
title: offen.software
|
title: offen.software
|
||||||
description: TBD
|
description: TBD
|
||||||
save_as: index.html
|
save_as: index.html
|
||||||
template: page
|
template: index
|
||||||
sitemap_priority: 1.0
|
sitemap_priority: 1.0
|
||||||
|
|
||||||
### offen.software website
|
|
||||||
|
@ -58,7 +58,6 @@ MARKDOWN = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
DECORATE_CONTENT = {
|
DECORATE_CONTENT = {
|
||||||
'h1': ['ma0'],
|
|
||||||
'h2': ['ma0'],
|
'h2': ['ma0'],
|
||||||
'h3': ['ma0'],
|
'h3': ['ma0'],
|
||||||
'h4': ['ma0'],
|
'h4': ['ma0'],
|
||||||
|
@ -7,3 +7,9 @@ COLORS
|
|||||||
.color-extra {
|
.color-extra {
|
||||||
color: #F5BEA7;
|
color: #F5BEA7;
|
||||||
}
|
}
|
||||||
|
/* ---------------------------------------------------
|
||||||
|
TYPOGRAPHY
|
||||||
|
----------------------------------------------------*/
|
||||||
|
.trackedWide {
|
||||||
|
letter-spacing: 0.04em;
|
||||||
|
}
|
||||||
|
@ -31,10 +31,17 @@
|
|||||||
-->
|
-->
|
||||||
</head>
|
</head>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
<body class="f5 poppins no-js color-extra bgColor-extra">
|
<body class="poppins f4 trackedWide lh-title no-js color-extra bgColor-extra">
|
||||||
{% block content %}{% endblock %}
|
|
||||||
|
<main class="w-100">
|
||||||
|
<div class="mw7 center pa3">
|
||||||
|
{% block content %}{% endblock %}
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
document.body.classList.remove('no-js');
|
document.body.classList.remove('no-js');
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "page.html" %}
|
||||||
{% set index = True %}
|
{% set index = True %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
<h1 class="f4 trackedWide ma0 mb3">
|
||||||
|
<span class="fw4">offen.</span><span class="fw7">software</span>
|
||||||
|
</h1>
|
||||||
|
<p class="ma0">
|
||||||
|
<span class="fw4">We </span><span class="fw7">think up, create and ship </span><span class="fw4">software for organisations and individuals who embrace </span><span class="fw7">societal change.</span>
|
||||||
|
</p>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% set href = page.href %}
|
|
||||||
{% set title = page.title %}
|
{% set title = page.title %}
|
||||||
{% set description = page.description %}
|
{% set description = page.description %}
|
||||||
|
{% set href = page.save_as.replace('index.html', '') %}
|
||||||
|
{% set template = page.template %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{{ page.content }}
|
{{ page.content }}
|
||||||
|
Loading…
Reference in New Issue
Block a user