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