From 1b2b023dedfdd0081adcd9de2d159b99b003be00 Mon Sep 17 00:00:00 2001 From: BioArchLinuxBot Date: Sun, 10 Apr 2022 21:22:54 +0000 Subject: [PATCH] init --- .gitignore | 1 + .hugo_build.lock | 0 archetypes/default.md | 6 +++ config.toml | 88 ++++++++++++++++++++++++++++++++++++++ content/post/2022-01-01.md | 9 ++++ themes/hugo-theme-archbio | 1 + 6 files changed, 105 insertions(+) create mode 100644 .gitignore create mode 100644 .hugo_build.lock create mode 100644 archetypes/default.md create mode 100644 config.toml create mode 100644 content/post/2022-01-01.md create mode 160000 themes/hugo-theme-archbio diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..46f5006 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +public/* diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..9342941 --- /dev/null +++ b/config.toml @@ -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 diff --git a/content/post/2022-01-01.md b/content/post/2022-01-01.md new file mode 100644 index 0000000..35de319 --- /dev/null +++ b/content/post/2022-01-01.md @@ -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 diff --git a/themes/hugo-theme-archbio b/themes/hugo-theme-archbio new file mode 160000 index 0000000..317e33c --- /dev/null +++ b/themes/hugo-theme-archbio @@ -0,0 +1 @@ +Subproject commit 317e33ccd5a5e1da57bb70d0b6d66a6749fd590b