mirror of
https://github.com/BioArchLinux/HomePage.git
synced 2025-03-10 06:14:00 +00:00
init
This commit is contained in:
commit
1b2b023ded
6 changed files with 105 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
public/*
|
0
.hugo_build.lock
Normal file
0
.hugo_build.lock
Normal file
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
88
config.toml
Normal file
88
config.toml
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
baseurl = "/"
|
||||||
|
languageCode = "en-us"
|
||||||
|
title = "BioArchLinux"
|
||||||
|
# Enable comments by entering your Disqus shortname
|
||||||
|
disqusShortname = ""
|
||||||
|
# Enable Google Analytics by entering your tracking code
|
||||||
|
googleAnalytics = ""
|
||||||
|
# Define the number of posts per site
|
||||||
|
paginate = 10
|
||||||
|
theme = "hugo-theme-archbio"
|
||||||
|
|
||||||
|
|
||||||
|
[permalinks]
|
||||||
|
post = "/:slug"
|
||||||
|
|
||||||
|
[params]
|
||||||
|
# Tell me who you're
|
||||||
|
location = ""
|
||||||
|
site_description = ""
|
||||||
|
copyright = "Powered by ArchLinux. Theme by [hugo-theme-archbio](https://github.com/BioArchLinux/hugo-theme-archbio)."
|
||||||
|
|
||||||
|
# Format dates with Go's time formating
|
||||||
|
date_format = "2006-01-02"
|
||||||
|
|
||||||
|
# Create custom menu entries by defining a label and a link for
|
||||||
|
# them. Since you can also link posts you've the option the
|
||||||
|
# place the links before or after them.
|
||||||
|
#
|
||||||
|
# E.g.: "Home" appears before all linked posts in the menu
|
||||||
|
# and "Tags" / "Categories" after them.
|
||||||
|
[[params.menu]]
|
||||||
|
before = true
|
||||||
|
label = "Home"
|
||||||
|
link = "/"
|
||||||
|
|
||||||
|
[[params.menu]]
|
||||||
|
before = false
|
||||||
|
label = "Tags"
|
||||||
|
link = "tags/"
|
||||||
|
|
||||||
|
[[params.menu]]
|
||||||
|
before = false
|
||||||
|
label = "Categories"
|
||||||
|
link = "categories/"
|
||||||
|
|
||||||
|
# Enter a link for the follow button on the left
|
||||||
|
[params.profile]
|
||||||
|
follow_button = ""
|
||||||
|
|
||||||
|
|
||||||
|
[social]
|
||||||
|
# Add your social network accounts to the profile section on the left
|
||||||
|
# by entering your username. The links to your account will be
|
||||||
|
# create automatically.
|
||||||
|
github = "BioArchLinux"
|
||||||
|
bitbucket = ""
|
||||||
|
jsfiddle = ""
|
||||||
|
codepen = ""
|
||||||
|
foursquare = ""
|
||||||
|
dribbble = ""
|
||||||
|
deviantart = ""
|
||||||
|
behance = ""
|
||||||
|
flickr = ""
|
||||||
|
instagram = ""
|
||||||
|
youtube = ""
|
||||||
|
vimeo = ""
|
||||||
|
vine = ""
|
||||||
|
medium = ""
|
||||||
|
wordpress = ""
|
||||||
|
tumblr = ""
|
||||||
|
xing = ""
|
||||||
|
linkedin = ""
|
||||||
|
slideshare = ""
|
||||||
|
stackoverflow = ""
|
||||||
|
reddit = ""
|
||||||
|
pinterest = ""
|
||||||
|
googleplus = ""
|
||||||
|
facebook = ""
|
||||||
|
facebook_admin = ""
|
||||||
|
twitter_domain = ""
|
||||||
|
twitter = ""
|
||||||
|
|
||||||
|
# Enable and disable widgets for the right sidebar
|
||||||
|
[params.widgets]
|
||||||
|
recent_articles = true
|
||||||
|
categories = false
|
||||||
|
tags = false
|
||||||
|
tag_cloud = false
|
9
content/post/2022-01-01.md
Normal file
9
content/post/2022-01-01.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
---
|
||||||
|
title: "Happy New Year"
|
||||||
|
date: 2022-01-01T00:00:00Z
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
# Happy New Year
|
||||||
|
|
||||||
|
Hello, everyone, thanks for using BioArchLinux, best wishes for you and BioArchLinux repository and comunity
|
1
themes/hugo-theme-archbio
Submodule
1
themes/hugo-theme-archbio
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 317e33ccd5a5e1da57bb70d0b6d66a6749fd590b
|
Loading…
Add table
Reference in a new issue