All checks were successful
Build Jekyll weblog / build (push) Successful in 7s
59 lines
1.8 KiB
YAML
59 lines
1.8 KiB
YAML
|
|
# ===========================
|
|
# Global site settings:
|
|
# ===========================
|
|
|
|
# Main title, displayed in the browser tab and site header.
|
|
title: Curious Guy's Journal
|
|
|
|
# Tag-line/short description displayed in the header beside the title.
|
|
tag_line: Talk is cheap, make things!
|
|
|
|
# Alternate tag-line, used as tooltip for the site's logo.
|
|
tag_line_alt: Talk is cheap, make things!
|
|
|
|
# Write an awesome description for your new site here.
|
|
# It will appear in your document head meta (for Google search results)
|
|
# Note: The `>` means to ignore newlines until next item ("destination").
|
|
description: >
|
|
I build this blog to keep track of my projects's progress and for sharing purpose.
|
|
It focuses mainly on HW programming and systems architecture.
|
|
C, C++, Verilog and VHDL are usually the programming languages involved in my projects.
|
|
destination: ./_site # Directory Jekyll outputs to
|
|
baseurl: "" # The subpath of your site, e.g. /site/
|
|
url: https://weblog.jcsmith.fr # The base hostname & protocol for your site
|
|
|
|
# Title of the landing page. Presented in the nav-bar.
|
|
landing_page: Articles
|
|
|
|
# Post URL format:
|
|
permalink: /:year/:month-:day/:title/
|
|
|
|
# Number of items in the Site's post list:
|
|
paginate: 10
|
|
paginate_path: page:num
|
|
|
|
# Social-media/contact links and icons displayed at the footer:
|
|
email: j@jcsmith.fr
|
|
gitea_username: jackcartersmith
|
|
#github_username: jackcartersmith
|
|
stackexchange_username: 24857861/jackcartersmith
|
|
|
|
# ===========================
|
|
# Build settings:
|
|
# ===========================
|
|
|
|
# Markdown engine:
|
|
markdown: kramdown
|
|
|
|
# Syntax highlight plugin:
|
|
highlighter: rouge
|
|
|
|
# Automatic sitemap.xml generator:
|
|
jekyll-sitemap: true
|
|
|
|
plugins:
|
|
- jekyll-sitemap
|
|
- jekyll-paginate
|
|
|