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.
63 lines
2.5 KiB
63 lines
2.5 KiB
<!DOCTYPE html> |
|
<html lang="fr"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
|
<title>latitude dev site</title> |
|
<link rel="stylesheet" type="text/css" href="{{url_for('static', filename='style.css')}}"> |
|
</head> |
|
<body> |
|
|
|
{% include 'menu.html' %} |
|
|
|
<div id="articles"> |
|
<ul class="legend"> |
|
<li class="sort" data-sort="upper"><span>upper</span></li> |
|
<li class="sort" data-sort="title"><span>project name</span></li> |
|
<li class="sort" data-sort="period"><span>period</span></li> |
|
<li class="sort" data-sort="location"><span>location</span></li> |
|
<li class="sort" data-sort="type"><span>type</span></li> |
|
<li class="sort" data-sort="fund"><span>initiative/fund</span></li> |
|
<li class="sort" data-sort="network"><span>network</span></li> |
|
</ul> |
|
<ul class="alist"> |
|
|
|
{% for article in articles %} |
|
<li {% if not imgDict[article.path] %}class="noContent"{%endif%} > |
|
<a href="" ><!-- {{ url_for('index', _external=False) }}{{ article.path }}--> |
|
<span class="upper">{{ article.upper }}</span> |
|
<span class="title ">{{article.title}}</span> |
|
<span class="period">{{article.published.strftime('%Y') }}</span> |
|
<span class="location">{{article.location}}</span> |
|
<span class="type">{{article.type}}</span> |
|
<span class="fund">{{article.fund}}</span> |
|
<span class="network">{{article.network}}</span> |
|
</a> |
|
<div class="content-wrapper"> |
|
{% if imgDict[article.path] %} |
|
<div class="gal"> |
|
{% for img in imgDict[article.path] : %} |
|
<div class = "img_container"> |
|
{% set img_url = article.path + '/' + img %} |
|
|
|
<img src="pages/{{article.path}}/{{img}}"/> |
|
</div> |
|
{% endfor %} |
|
</div>{%endif%} |
|
<div class="content"> |
|
{{article}} |
|
</div> |
|
</div> |
|
</li> |
|
{% endfor %} |
|
|
|
</ul> |
|
</div> |
|
|
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js" |
|
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" |
|
crossorigin="anonymous"></script> |
|
<script src="static/main.js"></script> |
|
</body> |
|
</html>
|
|
|