Skip to content

Commit 17e5893

Browse files
committed
feat: Update homepage
1 parent da83a77 commit 17e5893

File tree

1 file changed

+68
-2
lines changed

1 file changed

+68
-2
lines changed

index.md

Lines changed: 68 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,76 @@
11
---
2+
title: Home
23
layout: home
34
---
45

56
There are a lot of tools and languages in here - I hope you find what you are looking for or discovering something
67
useful.
78

8-
## Topics
9+
## Featured topics
910

10-
{% include flex-sections.html %}
11+
### Scripting
12+
13+
<div class="flex-container">
14+
<a href="{% link cheatsheets/python/index.md %}">
15+
<div>
16+
Python
17+
</div>
18+
</a>
19+
20+
<a href="{% link cheatsheets/javascript/index.md %}">
21+
<div>
22+
JavaScript
23+
</div>
24+
</a>
25+
</div>
26+
27+
### Static sites and docs
28+
29+
<div class="flex-container">
30+
31+
<a href="{% link cheatsheets/markdown/index.md %}">
32+
<div>
33+
Markdown
34+
</div>
35+
</a>
36+
37+
<a href="{% link cheatsheets/jekyll/index.md %}">
38+
<div>
39+
Jekyll
40+
</div>
41+
</a>
42+
</div>
43+
44+
### Command-line
45+
46+
<div class="flex-container">
47+
<a href="{% link cheatsheets/git/index.md %}">
48+
<div>
49+
Git
50+
</div>
51+
</a>
52+
53+
<a href="{% link cheatsheets/shell/index.md %}">
54+
<div>
55+
Shell
56+
</div>
57+
</a>
58+
59+
</div>
60+
61+
<style>
62+
.flex-container {
63+
display: flex;
64+
flex-wrap: wrap;
65+
padding-bottom: 1em;
66+
}
67+
68+
.flex-container>a>div {
69+
margin: 10px;
70+
padding: 20px;
71+
font-size: 20px;
72+
73+
box-shadow: 1px 2px 4px gray;
74+
}
75+
76+
</style>

0 commit comments

Comments
 (0)