52 lines
838 B
Markdown
52 lines
838 B
Markdown
---
|
|
layout: default
|
|
---
|
|
|
|
|
|
Prosjekter, dokumenter og annet
|
|
-------------------------------
|
|
|
|
<ul>
|
|
{% for post in site.posts %}
|
|
<li>
|
|
<p class="view">
|
|
<a href="{{ post.url | relative_url }}">
|
|
{{ post.title }}
|
|
<small>{{ post.description }}</small>
|
|
</a>
|
|
</p>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<ul>
|
|
{% for post in site.tdt4160 %}
|
|
<li>
|
|
<p class="view">
|
|
<a href="{{ post.url | relative_url }}">
|
|
{{ post.title }}
|
|
<small>{{ post.description }}</small>
|
|
</a>
|
|
</p>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
|
|
Andre tjenester på *GLaDOS*
|
|
---------------------------
|
|
|
|
<ul>
|
|
{% for service in site.data.glados %}
|
|
<li>
|
|
<p class="view">
|
|
<a href="{{ service.url }}">
|
|
{{ service.site }}
|
|
<small>{{ service.description }}</small>
|
|
</a>
|
|
</p>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|