forked from aaranxu/tale-zola
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b94ddae
commit d68a7f9
Showing
4 changed files
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ | |
<img src="https://img.shields.io/github/commit-activity/t/semanticdata/mabuya" /> | ||
<img src="https://img.shields.io/github/last-commit/semanticdata/mabuya" /> | ||
<img src="https://img.shields.io/website/https/mabuya.vercel.app.svg" /> | ||
|
||
<br /> | ||
|
||
[Mabuya](https://mabuya.vercel.app/) is a minimal [Zola](https://www.getzola.org) theme for building light and SEO-ready blogs. | ||
|
@@ -21,7 +20,7 @@ Put your work front and center with Mabuya as the base of your project. | |
|
||
## ⓘ Background | ||
|
||
While searching for themes, I came across [Zola Tale](https://github.com/aaranxu/tale-zola). Sadly, the project's last update was on Dec, 2021. Shortly after, I decided to fork the project and add my own touches to it. | ||
While searching for themes, I came across [Tale](https://github.com/aaranxu/tale-zola). Sadly, at the time of writing, the project's last update was on December, 2021. Shortly after, I decided to fork the project and add my own touches to it. | ||
|
||
The name **Mabuya** comes from the [Mabuya hispaniolae](https://en.wikipedia.org/wiki/Mabuya_hispaniolae?useskin=vector), a possibly extinct[^1] species of skink endemic to the Dominican Republic, my home country. | ||
|
||
|
@@ -30,6 +29,7 @@ The name **Mabuya** comes from the [Mabuya hispaniolae](https://en.wikipedia.org | |
- ✅ Simple Blog | ||
- ✅ Pagination | ||
- ✅ Tags | ||
- ✅ Dark Theme and Toggle | ||
- ✅ Back-to-Top button | ||
|
||
## 📈 Improvements | ||
|
@@ -39,7 +39,7 @@ While working on the theme, I have added new functionality and made many quality | |
- Refactored stylesheets. | ||
- Added Dark theme and color theme toggle. | ||
- Added new footer navigation. | ||
- Created a custom GitHub Action to deploy Zola sites faster than any other GitHub Actions using Docker. | ||
- Created a custom GitHub Action to deploy Zola sites faster than any other GitHub Actions without using Docker. | ||
- Refined page transitions from desktop to mobile and viceversa. | ||
- Centralized custom variables–made it easier to customize the site's colors. | ||
- Addressed PR [#7](https://github.com/aaranxu/tale-zola/pull/7) fixing the pagination problem present in the original Zola theme. | ||
|
@@ -50,15 +50,15 @@ While working on the theme, I have added new functionality and made many quality | |
|
||
## 🚀 Quick Start | ||
|
||
Before using the theme, you need to install [Zola](https://www.getzola.org/documentation/getting-started/installation/) ≥ v0.18.0. | ||
Before using the theme, you need to install [Zola](https://www.getzola.org/documentation/getting-started/installation/) ≥ v0.18.0. After which you'll need to: | ||
|
||
1. Clone the repository: | ||
|
||
```shell | ||
git clone [email protected]:semanticdata/mabuya.git | ||
``` | ||
|
||
2. Change directory into new clone: | ||
2. Change directory into new cloned repository: | ||
|
||
```shell | ||
cd mabuya | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,25 @@ | ||
base_url = "https://mabuya.vercel.app/" | ||
title = "Mabuya" | ||
description = "Mabuya is a minimal Zola theme for building light and SEO-ready blogs. Put your work front and center with Mabuya as the base of your project." | ||
author = "Miguel Pimentel" | ||
|
||
compile_sass = true | ||
generate_feeds = true | ||
feed_filenames = ["rss.xml", "atom.xml"] | ||
minify_html = true | ||
build_search_index = false | ||
taxonomies = [{ name = "tags", feed = true }] | ||
|
||
[markdown] | ||
highlight_code = true | ||
# highlight_theme = "ayu-light" | ||
highlight_theme = "visual-studio-dark" | ||
# More syntax highlighting themes: https://www.getzola.org/documentation/getting-started/configuration/#syntax-highlighting | ||
smart_punctuation = true | ||
|
||
[extra] | ||
author = "Miguel Pimentel" | ||
github = "https://github.com/semanticdata" | ||
email = "[email protected]" | ||
github = "https://github.com/semanticdata" | ||
timeformat = "%B %e, %Y" # e.g. June 14, 2021 | ||
|
||
[[extra.menu]] | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters