-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (70 loc) · 2.23 KB
/
index.html
File metadata and controls
72 lines (70 loc) · 2.23 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
layout: default
title: First Try!
---
<scroll-container>
<scroll-page id="home">
<div class="oval">
<div class="title">{{ site.name }}</div>
<div class="tagline">{{ site.tagline }}</div>
</div>
<article class="software">
<ul>
{% for pkg in site.data.software %}
<li>
<img class="lilbang" src="images/bang.png">
{{ pkg.name }}<br>
<span class="subtext">
<a href="{{ pkg.source }}" target="top">{{ pkg.source_name }}</a> |
<a href="{{ pkg.download }}" target="top">{{ pkg.download_name }}</a>
</span>
</li>
{% endfor %}
</ul>
</article>
<a class="arrow down bounce-5s" href="#{{ site.posts.first.slug }}"></a>
</scroll-page>
{% for post in site.posts %}
<scroll-page id="{{ post.slug }}">
<article>
<a href="{{ post.url }}">
<h1>{{ post.title }}</h1>
</a>
<h2>{{ post.subtitle }}</h2>
<section>
{{ post.content }}
</section>
</article>
{% if post.slug == site.posts.last.slug %}
<a class="arrow up" href="#home"></a>
{% else %}
<a class="arrow down" href="#{{ post.previous.slug }}"></a>
{% endif %}
</scroll-page>
{% endfor %}
<scroll-page id="about">
<div class="content">
<header>
<h1>Our Heroes!</h1>
</header>
<section class="bios">
{% assign i = 0 %}
{% for hero in site.data.heroes %}
{% assign mod = i | modulo: 2 %}
{% assign bubble = site.data.bubbles[mod].name %}
<div class="bio">
<h1>{{ hero.first_name }}!</h1>
<h2>The {{ hero.title }}.</h2>
<img src="images/{{ hero.slug }}.jpg" width="200" height="200" alt="{{ hero.first_name }} {{ hero.last_name }}">
<div class="bubble {{ bubble }}">{{ hero.quote }}</div>
</div>
{% assign i = i | plus: 1 %}
{% endfor %}
</section>
</div>
<footer>
<a href="/"><img src="/images/bang.png" width="48" height="48" alt="First Try! Software"></a>
<div class="copyright">Copyright © 2020 Alan Ridlehoover and Fito von Zastrow</div>
</footer>
</scroll-page>
</scroll-container>