2020-07-24 14:34:09 +02:00
|
|
|
---
|
|
|
|
title: Links
|
|
|
|
subtitle: Links
|
|
|
|
description: >-
|
|
|
|
Venture outside of your daily web-routine, read about some real projects.
|
|
|
|
These links are way more than just Friends and Resources
|
|
|
|
tags:
|
|
|
|
- links
|
|
|
|
- music
|
|
|
|
- record
|
|
|
|
- labels
|
|
|
|
- resources
|
|
|
|
- friends
|
2020-07-27 09:57:56 +02:00
|
|
|
image: /images/pages/reuben-hustler-YTV2zNt8Zqg-unsplash.jpg
|
2020-07-24 14:34:09 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
{% include relBase.html %}
|
|
|
|
<!-- Banner -->
|
2020-07-27 12:40:30 +02:00
|
|
|
<section class="banner onload-image-fade-in onload-content-fade-right style2 fullscreen content-align-center image-position-center" style="min-height:100vh;">
|
|
|
|
|
|
|
|
<div class="content">
|
|
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
<p>{{ page.description }}</p>
|
|
|
|
<ul class="actions stacked">
|
2020-07-27 15:26:09 +02:00
|
|
|
<li><a href="#second" class="button small smooth-scroll">Cheggit!</a></li>
|
2020-07-27 12:40:30 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
2020-07-24 14:34:09 +02:00
|
|
|
|
|
|
|
<div class="image">
|
2020-07-27 12:40:30 +02:00
|
|
|
<img src="{{ page.image }}" alt="unfound page" />
|
2020-07-24 14:34:09 +02:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<!-- NEWS -->
|
2020-07-27 12:40:30 +02:00
|
|
|
|
2020-07-24 14:34:09 +02:00
|
|
|
{% assign sorted = site.data.links | sort: 'title' %}
|
|
|
|
{% for link in sorted %}
|
|
|
|
|
|
|
|
<section id="second" class="spotlight style5 orient-{% cycle 'left', 'right' %} content-align-{% cycle 'right', 'left' %} image-position-center onscroll-image-fade-in" {% if forloop.index == 1 %}style="box-shadow: none;" {% endif %}>
|
|
|
|
<div class="content">
|
|
|
|
<h2>{{ link.title }}</h2>
|
|
|
|
<p>{{ link.banner }}</p>
|
|
|
|
<ul class="actions stacked">
|
2020-07-27 09:57:56 +02:00
|
|
|
<li><a href="{{ link.url }}?ref=ToSettoSettoSentMe" target="_blank" rel="noopener" style="text-decoration:none;" class="button">Visit</a></li>
|
2020-07-24 14:34:09 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="image">
|
|
|
|
<img src="{{ relBase }}/assets/img/tile.gif" alt="{{ page.title | smartify }}" />
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
{% include footer.html %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|