diff options
| -rw-r--r-- | README.md | 22 | ||||
| -rw-r--r-- | content/.gitkeep | 0 | ||||
| -rw-r--r-- | screenshot.png | bin | 0 -> 141945 bytes | |||
| -rw-r--r-- | templates/macros.html | 2 | ||||
| -rw-r--r-- | theme.toml | 4 | ||||
| -rw-r--r-- | vercel.json | 2 |
6 files changed, 15 insertions, 15 deletions
@@ -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  @@ -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 Binary files differnew file mode 100644 index 0000000..db60eef --- /dev/null +++ b/screenshot.png 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>© {{ 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> @@ -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" } } } |
