galamity/hackerspace/main.html

28 lines
843 B
HTML

{% extends 'basic.html' %}
{% block page_scripts %}
<script type="text/javascript" src="https://widgets.twimg.com/j/2/widget.js"></script>
{% endblock %}
{% block page_style %}
<link rel="stylesheet" href="/static/gallery.css"/>
{% endblock %}
{% block title %}Hackerspace Warszawa - Galamity - {{path}}{% endblock %}
{% block content %}
<a href="{{ parent }}">↑ W górę ↑</a>
<h1>{{ path }}</h1>
<h2>Podgalerie</h2>
<ul class="subgallery">
{% for d in dirs %}
<li><a href="{{d | gallery }}">{{ d }}</a></li>
{% endfor %}
</ul>
<h2>Zdjęcia</h2>
<ul class="pictures">
{% for p in pics %}
<li><a title="{{p}}" href="{{p | picture }}">
<img src="{{ p | thumb }}"></img>
</a></li>
{% endfor %}
</ul>
<span class="clear"><a href="#top">↑ Powrót na górę ↑</span>
{% endblock %}