Cailean Finn
8 months ago
6 changed files with 125 additions and 30 deletions
@ -0,0 +1,11 @@ |
|||||
|
{% extends "base.html" %} |
||||
|
{% block title %}Ø | CONCEPTNULL {% endblock %} |
||||
|
{% block content %} |
||||
|
<div class='content-cont'> |
||||
|
<br></br> |
||||
|
<div class='article-cont'> |
||||
|
{{ content | safe }} |
||||
|
</div> |
||||
|
<div class='foot'></div> |
||||
|
</div> |
||||
|
{% endblock %} |
@ -0,0 +1,14 @@ |
|||||
|
{% extends "base.html" %} |
||||
|
{% block title %} Ø | Meetups {% endblock %} |
||||
|
{% block content %} |
||||
|
|
||||
|
<div class='content-cont'> |
||||
|
<h1 class='content-header'>Meetups</h1> |
||||
|
<div class='article-cont'> |
||||
|
{{ content | safe }} |
||||
|
</div> |
||||
|
<div class='foot'></div> |
||||
|
</div> |
||||
|
|
||||
|
|
||||
|
{% endblock %} |
@ -0,0 +1,27 @@ |
|||||
|
{% extends "base.html" %} |
||||
|
{% block title %} Ø | Publications{% endblock %} |
||||
|
{% block content %} |
||||
|
<div class='section-cont'> |
||||
|
<div class='section'> |
||||
|
<a class='section-header' href='/archive/newsletters'><div class='section-title'><div style="display: inline-flex; text-align: center; justify-content: center; align-items: center; line-height: 100%; padding: 2.2px; font-size: 25px; font-style: normal; object-fit: contain; font-family: monospace; color: black; width: 100%;">NEWSLETTERS<br><!--<img src="https://i-love-everything.com/buttons/img/34.gif" style="max-height: 32px;">--></div></div></a> |
||||
|
<div class='section-group'> |
||||
|
{% for key, values in newsletters.items() %} |
||||
|
<div class='section-element'><a href="{{ url_for('page_content', title=values.title) }}">↘ {{ values.title }}</a></div> |
||||
|
<div class='section-date'>{{ values.date }}</div> |
||||
|
<div class='section-img'><a href="{{ url_for('page_content', title=values.title) }}"><img src="{{ values.source}}"></a></div> |
||||
|
{% endfor %} |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class='section'> |
||||
|
<a class='section-header' href='/archive/projects'><div class='section-title'><div style="display: inline-flex; text-align: center; justify-content: center; align-items: center; line-height: 100%; padding: 3.3px; font-size: 25px; font-style: normal; object-fit: contain; font-family: monospace; color: black; border: 0px solid black; width: 100%;">PROJECTS<!--<img src="https://i-love-everything.com/buttons/img/26.gif" style="max-height: 32px;">--></div></div></a> |
||||
|
<div class='section-group'> |
||||
|
{% for key, values in projects.items() %} |
||||
|
<div class='section-element'><a href="{{ url_for('page_content', title=values.title) }}">↘ {{ values.title }}</a></div> |
||||
|
<div class='section-date'>{{ values.date }}</div> |
||||
|
<div class='section-img'><a href="{{ url_for('page_content', title=values.title) }}"><img src="{{ values.source }}"></a></div> |
||||
|
{% endfor %} |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
|
||||
|
{% endblock %} |
Loading…
Reference in new issue