-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 928 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
layout: default
title: Kiberpipa CGP
---
<div>
<h1>CGP ipd.</h1>
<h2>Dokumenti</h2>
<ul>
{% for post in site.posts %}
<li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<h2>Grafične vsebine</h2>
<ul>
{% for file in site.static_files | sort: 'modified_time' %}
{% if file.extname contains '.svg' or file.extname contains '.pdf' %}
<li><a href="{{ site.baseurl }}{{ file.path }}">{{ file.path }}</a></li>
{% endif %}
{% endfor %}
</ul>
<ul class="images">
{% for file in site.static_files | sort: 'modified_time' %}
{% if file.extname contains '.png' %}
<li><img src="{{ site.baseurl }}{{ file.path }}"/></li>
{% endif %}
{% endfor %}
</ul>
</div>
<style>
img { max-width: 50%; max-height: 50%;}
ul.images { list-style-type: none; }
ul.images li { float: left; margin-right: 10px; }
</style>