diff --git a/README.md b/README.md
index fc2d22a..98032f7 100644
--- a/README.md
+++ b/README.md
@@ -32,9 +32,11 @@ You can find installation instructions [on the Zola website](https://www.getzola
4. This theme uses the `tags` taxonomy, in your `config.toml` file set `taxonomies = [ { name = "tags" } ]`
-5. Copy across the default content from the theme by running `cp themes/simple-dev-blog/content/* ./content -r`
+5. This theme uses the `authors` taxonomy, in your `config.toml` file set `taxonomies = [ { name = "authors" } ]`
-6. That's it! Now build your site by running the following command, and navigate to `127.0.0.1:111`:
+6. Copy across the default content from the theme by running `cp themes/simple-dev-blog/content/* ./content -r`
+
+7. That's it! Now build your site by running the following command, and navigate to `127.0.0.1:111`:
```sh
zola serve
@@ -61,6 +63,7 @@ The following options should be under the `[extra]` in `config.toml`
- `not_found_message` - the content for your 404 page in markdown
- `profile_large` - the path to a larger vertical version of your profile picture in the content folder
- `profile_small` - the path to a small version of your profile picture in the content folder
+- `summary_truncate_length` - the length of a post's summary
### Page
diff --git a/config.toml b/config.toml
index 0655883..fac461b 100644
--- a/config.toml
+++ b/config.toml
@@ -25,6 +25,8 @@ taxonomies = [
dark_mode = false
+summary_truncate_length = 300
+
nav = [
{ name = "About", path = "/about/" },
{ name = "Blog", path = "/blog/" }
diff --git a/sass/main.scss b/sass/main.scss
index 0fa128f..f6e19be 100644
--- a/sass/main.scss
+++ b/sass/main.scss
@@ -6,7 +6,7 @@ body {
}
.post-preview {
- h3.post-title {
+ h2.post-title {
margin-bottom: 0;
}
@@ -108,3 +108,10 @@ table tbody tr:nth-of-type(even) {
table tbody tr:last-of-type {
border-bottom: 2px solid var(--accent-color);
}
+
+hr.gradient-line {
+ height: 2px;
+ border: none;
+ border-radius: 10px;
+ background-image: linear-gradient(to right, #ffffff, var(--accent-color));
+}
diff --git a/sass/text.scss b/sass/text.scss
index 87c7275..153f456 100644
--- a/sass/text.scss
+++ b/sass/text.scss
@@ -62,7 +62,7 @@ a:visited {
main {
max-width: 700px;
- padding-top: 8rem;
+ padding-top: 4rem;
margin: auto;
}
@@ -110,6 +110,7 @@ header {
margin: auto;
display: flex;
flex-direction: row;
+ align-items: center;
}
a.profile-icon {
@@ -123,6 +124,11 @@ a.profile-icon {
}
}
+.profile-text {
+ padding-left: 1rem;
+ font-size: 1.5rem;
+}
+
nav {
display: flex;
align-items: center;
diff --git a/templates/base.html b/templates/base.html
index 58eca02..5af1045 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -108,7 +108,7 @@