diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..ac98f06 --- /dev/null +++ b/config.toml @@ -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 diff --git a/theme.toml b/theme.toml new file mode 100644 index 0000000..3331877 --- /dev/null +++ b/theme.toml @@ -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"