Portfolio

* Added lektor htmlmin plugin
* Improved sass grid
* Little update in contact page
* Added featherlight lightbox for project details screenshots
* Only loading lightbox libraries if needed
* Portfolio content review from migration
This commit is contained in:
Felipe 2017-04-10 22:49:43 +02:00 committed by GitHub
parent ea7ea8cc69
commit a3262ea645
149 changed files with 987 additions and 22 deletions

View file

@ -1,7 +1,34 @@
{% extends "_base.html" %}
{% block page_title %}{{ super() }} | {{ this.title }}{% endblock %}
{% block page_title %}{{ super() }} | Portfolio{% endblock %}
{% block main_content %}
portfolio
<div class="center">
<h1>Portfolio</h1>
<p>{{ this.content }}</p>
<ul>
{% for category in this.children %}
<li><a href="#{{ category.slug }}">{{ category.name }}</a></li>
{% endfor %}
</ul>
{% for category in this.children %}
<h2 id="{{ category.slug }}">{{ category.name }}</h2>
{% for item in category.children %}
<div class="project project-{{ category.slug }}" id="{{ item.slug }}">
<h3><a href="{% if item.url_in_list and item.url %}{{ item.url }}{% else %}{{ item|url }}{% endif %}">{{ item.name }}</a></h3>
{% if category.show_images %}
<div><img src="{{ item.attachments.images.first().thumbnail(512, 256, crop=True)|url }}"></div>
{% endif %}
{% if item.description_in_list %}
<p>{{ item.description }}</p>
{% endif %}
</div>
{% endfor %}
<div class="clearfloat"></div>
{% if not loop.last %}<hr class="light">{% endif %}
{% endfor %}
</div>
{% endblock %}