2023-08-27 23:05:43 +00:00
|
|
|
# The URL the site will be built for
|
|
|
|
base_url = "https://nethunters.xyz"
|
|
|
|
|
2023-08-28 04:21:23 +00:00
|
|
|
# Used in RSS by default
|
|
|
|
title = "Computer Science Notes and Research"
|
|
|
|
description = "A Cypherpunk Free Knowledge Blog"
|
|
|
|
|
|
|
|
# The default language, used in RSS
|
|
|
|
# TODO: I would love to support more languages and make this easy to handle
|
|
|
|
# with other facets of the theme.
|
|
|
|
default_language = "en"
|
|
|
|
|
|
|
|
# Whether to generate a RSS feed automatically
|
|
|
|
generate_feed = true
|
|
|
|
# 'atom.xml' (default if unspecified) and 'rss.xml' are officially supported
|
|
|
|
# values for feed_filename in this theme. All other filenames will assume a
|
|
|
|
# link type of 'application/rss+xml'.
|
|
|
|
# feed_filename = "atom.xml"
|
|
|
|
|
|
|
|
# Theme name to use.
|
|
|
|
# NOTE: should not need to mess with this if you are using zerm directly, i.e. cloning the
|
|
|
|
# repository at root and not using as directed by the Zola docs via themes/ directory.
|
|
|
|
# theme = ""
|
|
|
|
|
2023-08-27 23:05:43 +00:00
|
|
|
# Whether to automatically compile all Sass files in the sass directory
|
|
|
|
compile_sass = true
|
|
|
|
|
|
|
|
# Whether to build a search index to be used later on by a JavaScript library
|
|
|
|
build_search_index = false
|
|
|
|
|
2023-08-28 04:21:23 +00:00
|
|
|
# Built in taxonomies of zerm.
|
|
|
|
taxonomies = [
|
|
|
|
{name = "tags"},
|
|
|
|
{name = "categories"},
|
|
|
|
]
|
|
|
|
|
|
|
|
[extra]
|
|
|
|
# Put all your custom variables here
|
|
|
|
#
|
|
|
|
# Many configurations are taken directly from Terminal's config.toml
|
|
|
|
# ---------------------------------------------------------
|
|
|
|
|
|
|
|
# Author name to be added to posts, if enabled.
|
|
|
|
author = "David E. Perez Negron Rocha (A.K.A P1R0)"
|
|
|
|
|
|
|
|
# Show author's name in blog post meta data.
|
|
|
|
show_author = false
|
|
|
|
|
|
|
|
# Show categories a blog post is marked with in its meta data.
|
|
|
|
show_categories = true
|
|
|
|
|
|
|
|
# Show tags a blog post is marked with in its meta data.
|
|
|
|
show_tags = true
|
|
|
|
|
|
|
|
# Theme color. You can have any color you want, so long as it's...
|
|
|
|
# ["orange", "blue", "red", "green", "pink"]
|
|
|
|
theme_color = "blue"
|
|
|
|
|
|
|
|
# Custom css to style over the defaults. This is useful when you only have a
|
|
|
|
# few small tweaks to make rather than a major rehaul to the theme.
|
|
|
|
# It would be best to make this a proper .sass or .scss file in sass/ rather
|
|
|
|
# than placing in static/
|
|
|
|
# custom_css = "custom.css"
|
|
|
|
|
|
|
|
# How many menu items to show on desktop. if you set this to 0, only submenu
|
|
|
|
# button will be visible.
|
|
|
|
show_menu_items = 2
|
|
|
|
|
|
|
|
# set theme to full screen width.
|
|
|
|
full_width = false
|
|
|
|
|
|
|
|
# center theme with default width.
|
|
|
|
center = false
|
|
|
|
|
|
|
|
# set a custom favicon. Must be placed in root of static/ directory...
|
|
|
|
# favicon = ""
|
|
|
|
|
|
|
|
|
|
|
|
# Set a custom preview image for your website when posted as a link.
|
|
|
|
# Must be placed in root of static/ directory...
|
|
|
|
# og_preview_img = ""
|
|
|
|
|
|
|
|
# Copyright notice if desired. Defaults to
|
|
|
|
#copyright = '''
|
|
|
|
#Copyright (C) 2023 DAVID EUGENIO PEREZ NEGRON ROCHA
|
|
|
|
#Permission is granted to copy, distribute and/or modify this document
|
|
|
|
#under the terms of the GNU Free Documentation License, Version 1.3
|
|
|
|
#or any later version published by the Free Software Foundation;
|
|
|
|
#with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
|
|
|
|
#A copy of the license is included in the section entitled "GNU
|
|
|
|
#Free Documentation License".
|
|
|
|
#'''
|
|
|
|
|
|
|
|
# What is displayed in the top left corner of the website. Default is zerm.
|
|
|
|
logo_text = "NetHunters"
|
|
|
|
|
|
|
|
# Link in logo. Default returns you to $BASE_URL.
|
|
|
|
logo_home_link = "/"
|
|
|
|
|
|
|
|
# Menu items to display. You define a url and the name of the menu item.
|
|
|
|
# NOTE: `$BASE_URL/` must be included in the url name.
|
|
|
|
main_menu = [
|
|
|
|
{url="/about_me/", name="about me"},
|
|
|
|
{url="/contact/", name="contact"},
|
|
|
|
{url="https://deca.eco", name="deca.eco", external=true},
|
|
|
|
]
|
|
|
|
|
|
|
|
# Displayed as title of drop-down menu when size of main_menu > show_menu_items.
|
|
|
|
menu_more = "show more"
|
|
|
|
|
|
|
|
# Displayed after teaser text for a blog post.
|
|
|
|
read_more = "read more"
|
|
|
|
|
|
|
|
# not currently used from previous theme, but leaving here for now in case I
|
|
|
|
# feel like adding it.
|
|
|
|
read_other_posts = "read other posts"
|
|
|
|
|
|
|
|
|
|
|
|
# Enable math typesetting with KaTeX
|
|
|
|
# Show math in pages with `math=true` in the TOML frontmatter
|
|
|
|
enable_katex = true
|
|
|
|
|
|
|
|
# Options for disqus
|
|
|
|
disqus = { enabled=false, short_name="" }
|
|
|
|
|
|
|
|
# generate Table of Contents for all articles
|
|
|
|
# Table of Contents can be generated for individual articles
|
|
|
|
# by adding `ToC = true` in [extra] section in frontmatter
|
|
|
|
# ToC = true
|
|
|
|
|
2023-08-27 23:05:43 +00:00
|
|
|
[markdown]
|
|
|
|
# Whether to do syntax highlighting
|
|
|
|
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
|
2023-08-28 04:21:23 +00:00
|
|
|
highlight_code = true
|
2023-08-27 23:05:43 +00:00
|
|
|
|
2023-08-28 04:21:23 +00:00
|
|
|
# Syntax highlighting theme. See:
|
|
|
|
# https://www.getzola.org/documentation/getting-started/configuration/#syntax-highlighting
|
|
|
|
# for more information and themes built into Zola.
|
|
|
|
highlight_theme = "1337" # Other dark themes that work: "1337", "agola-dark",
|
|
|
|
# "visual-studio-dark"
|