Skip to content

Commit 3492c4b

Browse files
authored
Merge pull request #28 from tertsdiepraam/zola
redo styling and add a blog
2 parents 3147c75 + 0d6f621 commit 3492c4b

File tree

11 files changed

+358
-90
lines changed

11 files changed

+358
-90
lines changed

config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ default_language = "en"
99

1010
paginate_by = 10
1111

12+
generate_feed = true
13+
1214
[markdown]
1315
highlight_code = true
1416
highlight_theme = "OneHalfLight"

content/_index.md

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,41 @@
11
+++
2+
title = "Home"
3+
template = "index.html"
24
+++
35

4-
<header>
5-
<img src="logo.svg" alt="uutils" class="logo" />
6-
<h1 class="title">uutils</h1>
7-
</header>
6+
<div class="hero">
7+
<img src="logo.svg">
8+
<div>uutils</div>
9+
</div>
810

911
The uutils project reimplements ubiquitous command line utilities in
1012
Rust. Our goal is to modernize the utils, while retaining full
1113
compatibility with the existing utilities.
1214

13-
## Projects
15+
# Projects
1416

1517
<div class="projects">
1618
<a class="project" href="/coreutils">
17-
<span aria-hidden="true">&gt;</span>
18-
coreutils
19+
<h2>coreutils</h2>
20+
<p>
21+
The commands you use everyday: <code>ls</code>, <code>cp</code>, etc.
22+
</p>
1923
</a>
2024
<a class="project" href="/findutils">
21-
<span aria-hidden="true">&gt;</span>
22-
findutils
25+
<h2>findutils</h2>
26+
<p>
27+
Finding what you need: <code>find</code>, <code>locate</code>, <code>updatedb</code> &amp; <code>xargs</code>.
28+
</p>
2329
</a>
2430
<a class="project" href="/diffutils">
25-
<span aria-hidden="true">&gt;</span>
26-
diffutils
31+
<h2>diffutils</h2>
32+
<p>
33+
Comparing text and files: <code>diff</code>, <code>cmp</code>, <code>diff3</code>, <code>sdiff</code>.
34+
</p>
2735
</a>
2836
</div>
2937

30-
## Crates
38+
# Crates
3139

3240
We maintain a variety of public crates to support our projects,
3341
which are published on [crates.io](https://crates.io/).
@@ -36,7 +44,7 @@ which are published on [crates.io](https://crates.io/).
3644
- [`parse_datetime`](https://github.com/uutils/parse_datetime)
3745
- [`uutils-term-grid`](https://github.com/uutils/uutils-term-grid)
3846

39-
## Contributing
47+
# Contributing
4048

4149
You can help us out by:
4250

@@ -48,7 +56,7 @@ You can help us out by:
4856

4957
You can join our [Discord server](https://discord.gg/wQVJbvJ) to discuss or ask anything concerning uutils. We're happy to help you get started with contributing!
5058

51-
## Friends of uutils
59+
# Friends of uutils
5260

5361
We collaborate with and build upon many other projects in the Rust
5462
community, either by using or providing crates. We highly recommend

content/blog/_index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
+++
2+
template = "section.html"
3+
sort_by = "date"
4+
page_template = "post.html"
5+
title = "Blog"
6+
+++
7+
8+
You can subscribe to this blog with this [atom feed](/atom.xml).

content/blog/test.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
+++
2+
title = "Test post"
3+
draft = true
4+
date = 2024-01-31
5+
authors = ["Terts Diepraam"]
6+
+++
7+
8+
This is a test post
9+
10+
# Heading 1

content/gsoc.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
+++
2-
title = "GSOC"
2+
title = "Uutils at GSOC"
33
+++
44

5-
# Uutils at GSOC
6-
75
Google summer of code is:
86

97
> Google Summer of Code is a global, online program focused on bringing

0 commit comments

Comments
 (0)