Skip to content

Commit 59e730c

Browse files
Alan Ridlehoover and Fito von ZastrowFito
Alan Ridlehoover and Fito von Zastrow
andcommitted
Adds software links to home page, adds copyright
Co-authored-by: Fito von Zastrow <[email protected]>
1 parent abb19bb commit 59e730c

File tree

7 files changed

+84
-5
lines changed

7 files changed

+84
-5
lines changed

_data/software.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
- name: Manufacturable
2+
slug: manufacturable
3+
type: Ruby Gem
4+
download: https://rubygems.org/gems/manufacturable
5+
download_name: Ruby Gems
6+
source: https://github.com/first-try-software/manufacturable
7+
source_name: GitHub
8+
9+
- name: Navigable
10+
slug: navigable
11+
type: Ruby Gem
12+
download: https://rubygems.org/gems/navigable
13+
download_name: Ruby Gems
14+
source: https://github.com/first-try-software/navigable
15+
source_name: GitHub
16+
17+
- name: Ruby Flog
18+
slug: ruby-flog
19+
type: VS Code Extension
20+
download: https://marketplace.visualstudio.com/items?itemName=first-try-software.ruby-flog
21+
download_name: VS Code Marketplace
22+
source: https://github.com/first-try-software/vs-code-ruby-flog
23+
source_name: GitHub
24+
25+
- name: Coverage Status
26+
slug: coverage-status
27+
type: VS Code Extension
28+
download: https://marketplace.visualstudio.com/items?itemName=first-try-software.coverage-status
29+
download_name: VS Code Marketplace
30+
source: https://github.com/first-try-software/vs-code-coverage-status
31+
source_name: GitHub
32+

_sass/about.scss

+6
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@
2020
}
2121
}
2222

23+
.copyright {
24+
color: $color-blue-light;
25+
padding-top: $padding;
26+
text-align: center;
27+
}
28+
2329
a {
2430
margin: 0 auto;
2531
}

_sass/intro.scss

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
.software {
2+
font-family: "MonoHand", sans-serif;
3+
font-size: 20px;
4+
margin-top: 3em;
5+
text-align: center;
6+
7+
ul {
8+
list-style-type: none;
9+
10+
li {
11+
display: inline-block;
12+
padding: $padding;
13+
text-align: center;
14+
text-transform: uppercase;
15+
16+
.lilbang {
17+
width: 20px;
18+
}
19+
20+
.subtext {
21+
font-size: 12px;
22+
}
23+
}
24+
}
25+
}

_sass/layout.scss

+1-3
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ section {
3333
}
3434

3535
footer {
36-
background-color: $background-color-primary;
37-
border: $padding solid $background-color-primary;
3836
display: flex;
39-
justify-content: center;
37+
flex-direction: column;
4038
}

_sass/variables.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ $color-drop-shadow: $color-black;
1515

1616
$margin: 16px;
1717
$padding: 16px;
18-
$margin-home-header: 20vh;
18+
$margin-home-header: 15vh;
1919

2020
$page-margin: $margin;
2121
$page-margins: $page-margin * 2;

css/firsttry.scss

+1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@
1212
"arrows",
1313
"media",
1414
"about",
15+
"intro",
1516
"post"

index.html

+18-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@
77
<div class="oval">
88
<div class="title">{{ site.name }}</div>
99
<div class="tagline">{{ site.tagline }}</div>
10+
<div class="software">
11+
<ul>
12+
{% for pkg in site.data.software %}
13+
<li>
14+
<img class="lilbang" src="images/bang.png">
15+
{{ pkg.name }}<br>
16+
<span class="subtext">
17+
<a href="{{ pkg.source }}" target="top">{{ pkg.source_name }}</a> |
18+
<a href="{{ pkg.download }}" target="top">{{ pkg.download_name }}</a>
19+
</span>
20+
</li>
21+
{% endfor %}
22+
</ul>
23+
</div>
1024
</div>
1125
<a class="arrow down bounce-5s" href="#{{ site.posts.first.slug }}"></a>
1226
</scroll-page>
@@ -49,7 +63,10 @@ <h2>The {{ hero.title }}.</h2>
4963
{% endfor %}
5064
</section>
5165
</div>
52-
<a href="/"><img src="/images/bang.png" width="48" height="48" alt="First Try! Software"></a>
66+
<footer>
67+
<a href="/"><img src="/images/bang.png" width="48" height="48" alt="First Try! Software"></a>
68+
<div class="copyright">Copyright &copy; 2020 Alan Ridlehoover and Fito von Zastrow</div>
69+
</footer>
5370
</scroll-page>
5471
</scroll-container>
5572

0 commit comments

Comments
 (0)