blank theme created

This commit is contained in:
murteza yesil 2022-02-01 22:10:45 -08:00
parent ab42e937a4
commit e2abcbd27a
2 changed files with 61 additions and 0 deletions

15
config.toml Normal file
View File

@ -0,0 +1,15 @@
# The URL the site will be built for
base_url = "https://murteza.tilde.team/plain_theme"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = false
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false
[extra]
# Put all your custom variables here

46
theme.toml Normal file
View File

@ -0,0 +1,46 @@
name = "plain_theme"
description = "Plain and Simple theme for Zola"
license = "MIT"
homepage = "https://murteza.tilde.team/plain_theme"
# The minimum version of Zola required
min_version = "0.4.0"
# An optional live demo URL
#demo = "https://murteza.tilde.team/plain_theme"
# Any variable there can be overridden in the end user `config.toml`
# You don't need to prefix variables by the theme name but as this will
# be merged with user data, some kind of prefix or nesting is preferable
# Use snake_casing to be consistent with the rest of Zola
[extra]
# Langauge code for the site. eg: "ar" for Arabic
language = "en"
# title can be author, site, company etc. name
title = ""
# items to be shown in the menu
menu_items = [
{ url = "https://example.com", name = "Example"}
]
# Show a second menu to go to categories?
show_categories_submenu = false
# License for the content on the site
license = "CC BY-SA 4.0"
# How many links per index page
pagination = 10
# The theme author info: you!
[author]
name = "Ali Murteza Yesil"
homepage = "https://murteza.tilde.team"
repo = "https://tildegit.org/murteza/plain_theme"
# If this is porting a theme from another static site engine, provide
# the info of the original author here
[original]
author = "Kev Quirk"
homepage = "https://simplecss.org/demo"
repo = "https://github.com/kevquirk/simple.css"