summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md22
-rw-r--r--content/.gitkeep0
-rw-r--r--screenshot.pngbin0 -> 141945 bytes
-rw-r--r--templates/macros.html2
-rw-r--r--theme.toml4
-rw-r--r--vercel.json2
6 files changed, 15 insertions, 15 deletions
diff --git a/README.md b/README.md
index a46ad65..8e3b530 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Port for Zola of the [particle](https://github.com/nrandecker/particle) Jekyll theme
+# Port for Zola of the Particle Jekyll theme
![](./screenshot.jpg)
@@ -19,24 +19,24 @@ The Theme features:
1. [Install Zola](https://getzola.com)
2. Clone the particle theme: `git clone https://github.com/svavs/particle-zola.git`
-3. Edit `config.yml` to personalize your site.
+3. Edit `config.toml` to personalize your site.
## Site and User Settings
-You have to fill some informations on the `[extra]` section of the `config.yml` to customize your site.
+You have to fill some informations on the `[extra]` section of the `config.toml` to customize your site.
```
# Site settings
-description: A blog about lorem ipsum dolor sit amet
+description = "A blog about lorem ipsum dolor sit amet"
# User settings
-username: Lorem Ipsum
-user_description: Anon Developer at Lorem Ipsum Dolor
-user_title: Anon Developer
-email: my@email.com
-twitter_username: lorem_ipsum
-github_username: lorem_ipsum
-gplus_username: lorem_ipsum
+username = "Lorem Ipsum"
+user_description = "Anon Developer at Lorem Ipsum Dolor"
+user_title = "Anon Developer"
+email = "my@email.com"
+twitter_username = "lorem_ipsum"
+github_username = "lorem_ipsum"
+gplus_username = "lorem_ipsum"
```
## Color and Particle Customization
diff --git a/content/.gitkeep b/content/.gitkeep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/content/.gitkeep
diff --git a/screenshot.png b/screenshot.png
new file mode 100644
index 0000000..db60eef
--- /dev/null
+++ b/screenshot.png
Binary files differ
diff --git a/templates/macros.html b/templates/macros.html
index a8747bf..37a2eb4 100644
--- a/templates/macros.html
+++ b/templates/macros.html
@@ -15,7 +15,7 @@
{% macro footer() %}
<footer class="footer">
<p>&copy; {{ config.extra.username }}</p>
- <p>Build with Jekyll and <span class="love">❤</span> by <a href="https://github.com/nrandecker">Nathan Randecker</a></p>
+ <p>Ported to Zola with <span class="love">❤</span> by <a href="https://github.com/svavs">Silvano Sallese</a> (original by <a href="https://github.com/nrandecker">Nathan Randecker</a>)</p>
</footer>
<script src="//cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="{{ config.base_url ~ "/js/sweet-scroll.min.js" }}"></script>
diff --git a/theme.toml b/theme.toml
index 12acdda..86a4fa8 100644
--- a/theme.toml
+++ b/theme.toml
@@ -1,8 +1,8 @@
name = "particle"
description = "Particle theme for Zola"
license = "MIT"
-homepage = "https://github.com/svavs/particle"
-min_version = "0.11.0"
+homepage = "https://github.com/svavs/particle-zola"
+min_version = "0.16.1"
demo = "https://particle-zola.vercel.app/"
[author]
diff --git a/vercel.json b/vercel.json
index 9f4d9ad..b4ff15f 100644
--- a/vercel.json
+++ b/vercel.json
@@ -1,7 +1,7 @@
{
"build": {
"env": {
- "ZOLA_VERSION": "0.11.0"
+ "ZOLA_VERSION": "0.14.0"
}
}
}