Jekyll project for our main website https://socialnerds.org
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.
45 lines
1.1 KiB
45 lines
1.1 KiB
--- |
|
layout: default |
|
--- |
|
|
|
{% include header.html %} |
|
|
|
<div class="portfolio"> |
|
<p> |
|
<a href="/">socialnerds.org</a> connects a couple of nerds |
|
(who do also exist in a social “real life” environment) doing interesting stuff like writing code, |
|
playing around with hardware, getting to know the latest operating systems, |
|
gaming old classics and doing whatever is fun doing with a computer (or something similar).<br> |
|
</p> |
|
<br> |
|
<p> |
|
Read on: |
|
{% for pages in site.data.pages %} |
|
<a href="{{ pages.url }}">{{ pages.name}}</a>, |
|
{% endfor %} |
|
<a href="/feed.xml">feed</a> |
|
</p> |
|
</div> |
|
|
|
<div class="portfolio"> |
|
<h1>Projects:</h1> |
|
<ul> |
|
{% for websites in site.data.websites %} |
|
<li> |
|
- <a href="{{ websites.url }}">{{ websites.name }}</a> |
|
</li> |
|
{% endfor %} |
|
</ul> |
|
</div> |
|
|
|
|
|
<div class="blog"> |
|
<h1>Blog posts:</h1> |
|
<ul> |
|
{% for post in site.posts %} |
|
<li> |
|
<span class="date">{{ post.date | date: '%Y %b %d' }}</span> - <a href="{{ post.url }}">{{ post.title }}</a> |
|
</li> |
|
{% endfor %} |
|
</ul> |
|
</div>
|
|
|