Initial commit
This commit is contained in:
commit
3e92397fe1
23 changed files with 459 additions and 0 deletions
101
config.toml
Normal file
101
config.toml
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
base_url = "https://lyes.eu"
|
||||
title = "Lyes Saadi"
|
||||
description = "Le site de Lyes"
|
||||
author = "Lyes Saadi"
|
||||
default_language = "fr"
|
||||
output_dir = "public"
|
||||
|
||||
theme = "ametrine"
|
||||
compile_sass = true
|
||||
|
||||
# generate_feeds = true
|
||||
feed_filenames = ["atom.xml", "rss.xml"]
|
||||
build_search_index = true
|
||||
|
||||
[markdown]
|
||||
highlight_code = true
|
||||
# extra_syntaxes_and_themes = ["sublime"]
|
||||
highlight_theme = "dracula"
|
||||
# highlight_themes_css = [
|
||||
# { theme = "monokai-pro-dark", filename = "syntax-theme-dark.css" },
|
||||
# { theme = "monokai-pro-light", filename = "syntax-theme-light.css" },
|
||||
# ]
|
||||
render_emoji = true
|
||||
smart_punctuation = true
|
||||
bottom_footnotes = true
|
||||
lazy_async_image = true
|
||||
external_links_class = "external"
|
||||
insert_anchor_links = "left"
|
||||
|
||||
[slugify]
|
||||
paths = "on"
|
||||
taxonomies = "on"
|
||||
anchors = "on"
|
||||
|
||||
[languages.en]
|
||||
title = "Lyes Saadi"
|
||||
description = "Lyes' website"
|
||||
# generate_feeds = true
|
||||
feed_filenames = ["atom.xml", "rss.xml"]
|
||||
build_search_index = true
|
||||
|
||||
[extra]
|
||||
home_url = "@/home/index.md"
|
||||
accent_color = ["hsl(19 75% 42%)", "hsl(276 82% 78%)"]
|
||||
katex = true
|
||||
toc = true
|
||||
show_copy_button = true
|
||||
show_reading_time = true
|
||||
show_backlinks = true
|
||||
timezone = "Europe/Paris"
|
||||
theme_switcher = true
|
||||
date_locale = "fr_FR"
|
||||
|
||||
[extra.en]
|
||||
date_locale = "en_US"
|
||||
|
||||
[extra.meta]
|
||||
favicon = "icon.png"
|
||||
apple_touch_icon = "icon.png"
|
||||
|
||||
[extra.nav]
|
||||
icon = "icon.png"
|
||||
links = [
|
||||
{ url = "@/blog/_index.md", name = "Blog", icon = "newspaper" },
|
||||
{ name = "Académique", category = [
|
||||
{ url = "@/studies/index.md", name = "Formation", icon = "graduation-cap" },
|
||||
{ url = "@/research/_index.md", name = "Recherche", icon = "microscope" },
|
||||
] },
|
||||
# { name = "Projets", category = [
|
||||
# { url = "#", name = "Informatique", icon = "linux-logo" },
|
||||
# ] },
|
||||
]
|
||||
|
||||
[extra.nav.en]
|
||||
# icon = "icon.png"
|
||||
links = [
|
||||
{ url = "@/blog/_index.md", name = "Blog", icon = "newspaper" },
|
||||
{ name = "Academic", category = [
|
||||
{ url = "@/studies/index.md", name = "Studies", icon = "graduation-cap" },
|
||||
{ url = "@/research/_index.md", name = "Research", icon = "microscope" },
|
||||
] },
|
||||
# { name = "Projects", category = [
|
||||
# { url = "#", name = "Computer science", icon = "linux-logo" },
|
||||
# ] },
|
||||
]
|
||||
|
||||
[extra.footer]
|
||||
copyright = true
|
||||
show_timestamp = true
|
||||
show_powered_by = true
|
||||
socials = [
|
||||
# { url = "https://matrix.to/#/@lyessaadi:crans.org", icon = "matrix" }
|
||||
]
|
||||
|
||||
[extra.footer.en]
|
||||
copyright = true
|
||||
show_timestamp = true
|
||||
show_powered_by = true
|
||||
socials = [
|
||||
# { url = "https://matrix.to/#/@lyessaadi:crans.org", icon = "matrix" }
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue