You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.2 KiB
64 lines
2.2 KiB
{% extends "base.html" %}
|
|
{% block title %}Ø | {{ title }}{% endblock %}
|
|
{% block content %}
|
|
<div class='content-cont'>
|
|
<h1 class='content-header'>{{ title }}</h1>
|
|
<div class='article-cont'>
|
|
{{ content | safe }}
|
|
</div>
|
|
<p>​</p>
|
|
<div class='event-cont'>
|
|
{% for key, value in events.items() %}
|
|
<hr>
|
|
<h2 class='event-heading'>Spotlight 🔦</h2>
|
|
<hr>
|
|
<div class='list-events'>
|
|
{% for data in value %}
|
|
<div class='event'>
|
|
<h4 class='event-name'><b>{{ data.name }}</b></h4>
|
|
<p class='event-org'><b>Organiser/s: </b>{{ data.org }}</p>
|
|
<p class='event-location'><b>Location: </b>{{ data.location }}</p>
|
|
<p class='event-deadline'><b>Date: </b>{{ data.deadline }}</p>
|
|
<p class='event-text'>{{ data.text }}</p>
|
|
<a href={{ data.source }} target='_blank'><p class='event-link'><b>Link ↗</b></p></a>
|
|
</div>
|
|
<p>​</p>
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class='opp-cont'>
|
|
{% for key, value in opportunities.items() %}
|
|
<hr>
|
|
<h2 class='opp-type-heading'>{{ key }}</h2>
|
|
<hr>
|
|
<div class='list-opp'>
|
|
{% for data in value %}
|
|
<div class='opp'>
|
|
<h4 class='opp-name'><b>{{ data.name }}</b></h4>
|
|
<p class='opp-deadline'><b>Deadline:</b> {{ data.deadline }}</p>
|
|
<p class='opp-location'><i>{{ data.location }}</i></p>
|
|
<p class='opp-text'>{{ data.text }}</p>
|
|
<a href={{ data.source }} target='_blank'><p class='opp-link'><b>Link ↗</b></p></a>
|
|
<p>​</p>
|
|
</div>
|
|
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
<hr>
|
|
</div>
|
|
|
|
<div class='article-cont'>
|
|
<p>That’s it for now! The newsletter gets sent out 1st and 15th of every month and we post open calls and events as they come in on our <a href='https://www.instagram.com/conceptnull/' target='_blank'>Instagram</a> so be sure to follow us there.</p>
|
|
|
|
<p>Again, thank you for all of your support as we continue to grow our project with the help of a great community and, as we always say, we would love to hear your thoughts, projects, events or other open opportunities so drop us an email.</p>
|
|
|
|
<p>Chat soon, <a href='https://conceptnull.org/' target='_blank'>Concept NULL</a></p>
|
|
|
|
<p>[[email protected]]</p>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|