Skip to content

Commit ab30c34

Browse files
committed
WIP
1 parent 0ea4f35 commit ab30c34

28 files changed

+592
-960
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[*.{md,mkdn}]
22
trim_trailing_whitespace = false
33
indent_style = space
4+
5+
[anchor-link.html]
6+
insert_final_newline = false

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
public/
22
.idea/
33
*.DS_Store
4+
/static/syntax-theme-*.css

config.toml

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ feed_filenames = ["rss.xml"]
88

99
[markdown]
1010
highlight_code = true
11+
highlight_theme = "css"
12+
highlight_themes_css = [
13+
{ theme = "base16-ocean-dark", filename = "syntax-theme-dark.css" },
14+
{ theme = "OneHalfLight", filename = "syntax-theme-light.css" },
15+
]
1116
smart_punctuation = true
1217

1318
[extra]

content/blog/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title = "Blog Posts"
3-
insert_anchor_links = "right"
3+
insert_anchor_links = "left"
44
template = "posts.html"
55
page_template = "post.html"
66
sort_by = "date"

content/news/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title = "News"
3-
insert_anchor_links = "right"
3+
insert_anchor_links = "left"
44
template = "posts.html"
55
page_template = "post.html"
66
sort_by = "date"

content/pages/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
+++
22
redirect_to = "/"
3-
insert_anchor_links = "right"
4-
+++
3+
insert_anchor_links = "left"
4+
+++

content/pages/markdown-showcase.md

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
+++
2+
title = "Markdown"
3+
description = "Here goes a short description or subtitle for this page"
4+
draft = true
5+
+++
6+
7+
## Formatting Examples
8+
**Lorem** _ipsum_ [dolor sit](https://example.com) ~~amet~~, `consectetur`[^1] adipiscing elit, sed do eiusmod tempor incididunt[^2] ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
9+
10+
---
11+
12+
Ac turpis egestas integer eget aliquet nibh praesent tristique magna. Amet luctus venenatis lectus magna fringilla urna porttitor. Ultricies mi quis hendrerit dolor. Risus in hendrerit gravida rutrum quisque non. Eleifend mi in nulla posuere sollicitudin aliquam.
13+
14+
## H2
15+
16+
Ac turpis egestas integer eget aliquet nibh praesent tristique magna. Amet luctus venenatis lectus magna fringilla urna porttitor. Ultricies mi quis hendrerit dolor. Risus in hendrerit gravida rutrum quisque non. Eleifend mi in nulla posuere sollicitudin aliquam.
17+
18+
### H3
19+
Duis ut diam quam nulla porttitor massa id neque. Pharetra convallis posuere morbi leo urna molestie. Nunc mattis enim ut tellus elementum. In iaculis nunc sed augue lacus viverra vitae congue eu. Dolor sit amet consectetur adipiscing elit pellentesque habitant morbi. Lacinia at quis risus sed vulputate odio. Commodo odio aenean sed adipiscing diam donec. Morbi tristique senectus et netus et. Ut eu sem integer vitae justo eget.
20+
21+
## Code
22+
```python
23+
print('Hello World')
24+
```
25+
26+
## Quote
27+
> Don't believe everything you read on the internet.
28+
> - Nikola Tesla
29+
30+
## Ordered List
31+
1. One
32+
2. Two
33+
1. Nested
34+
2. Things
35+
3. Three
36+
37+
## Unordered List
38+
* Foo
39+
* Bar
40+
* Baz
41+
42+
## Details
43+
44+
<details>
45+
<summary>Expand for more :)</summary>
46+
47+
Amet luctus venenatis lectus magna fringilla urna porttitor. Ultricies mi quis hendrerit dolor.
48+
49+
</details>
50+
51+
## Table
52+
53+
| Terminal | Iterations | min | max | mean |
54+
|---------------------|------------|--------------|---------------|--------------|
55+
| foot | 10000 | 26.130 µs | 248.260 µs | 31.825 µs |
56+
| XTerm | 10000 | 33.550 µs | 295.990 µs | 39.926 µs |
57+
| Konsole | 10000 | 34.110 µs | 3.652145 ms | 38.094 µs |
58+
| Alacritty | 10000 | 40.340 µs | 414.961 µs | 57.569 µs |
59+
| IntelliJ IDEA | 10000 | 71.267 µs | 2.453094 ms | 154.491 µs |
60+
| Terminal.app | 10000 | 196.143 µs | 25.064408 ms | 241.916 µs |
61+
| Hyper | 10000 | 16.287473 ms | 57.534790 ms | 20.040066 ms |
62+
| GNOME Console (vte) | 10000 | 8.157828 ms | 56.823240 ms | 20.656316 ms |
63+
| VSCode | 10000 | 24.164008 ms | 140.036258 ms | 26.061349 ms |
64+
| iTerm2 | 10000 | 4.065856 ms | 49.872777 ms | 28.259948 ms |
65+
66+
67+
## Title with `code`
68+
69+
# H1
70+
## H2
71+
### H3
72+
Notice that there is no extra space between these nested headings.
73+
74+
[^1]: Here comes the footnote
75+
76+
[^2]: Aaaand a second footnote

content/posts/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
+++
22
redirect_to = "/"
3-
insert_anchor_links = "right"
3+
insert_anchor_links = "left"
44
+++

sass/_extra.scss

-202
This file was deleted.

sass/_form.scss

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
.email-form {
2+
display: grid;
3+
margin-top: var(--section-gap);
4+
grid-template-columns: auto auto;
5+
justify-content: center;
6+
gap: var(--block-gap);
7+
background-color: var(--bg-1-color);
8+
padding: var(--block-gap);
9+
align-items: center;
10+
border-radius: var(--box-rounding);
11+
12+
.email-form__icon {
13+
width: 5em;
14+
height: 5em;
15+
--icon-stroke-color: var(--fg-color);
16+
}
17+
18+
.email-form__description {
19+
max-width: 18em;
20+
}
21+
22+
.email-form__input {
23+
grid-column: 1 / 3;
24+
}
25+
}
26+
27+
.email-input {
28+
display: grid;
29+
grid-template-columns: repeat(2, auto);
30+
gap: 5px;
31+
32+
label {
33+
grid-column: 1 / 3;
34+
font-size: .8em;
35+
}
36+
}

0 commit comments

Comments
 (0)