First release

This commit is contained in:
Christoffer Martinsson 2018-10-25 20:37:34 +02:00
parent 6ce5a3e8ff
commit e6effe8180
6 changed files with 35 additions and 26 deletions

View File

@ -1,33 +1,31 @@
# Site settings # Site settings
baseURL = "https://pages.cmtec.se/cmtec.se/" baseURL = "https://pages.cmtec.se/cmtec.se/"
languageCode = "en-us" languageCode = "en-us"
title = "Minimal" title = "CMtec"
theme = "minimal" theme = "minimal"
disqusShortname = "" # delete this to disable disqus comments disqusShortname = "" # delete this to disable disqus comments
googleAnalytics = "" googleAnalytics = ""
[params] [params]
author = "Calin Tataru" author = "Christoffer Martinsson"
description = "Personal blog theme powered by Hugo" description = "Open Source Product **(and music)** Development"
profilePic ="images/CMTecV3_Dark.png"
copyright = "Copyright 2018 CMtec"
githubUsername = "#" githubUsername = "#"
accent = "red" accent = "#afd787"
showBorder = true showBorder = true
backgroundColor = "white" backgroundColor = "#262626"
font = "Raleway" # should match the name on Google Fonts! font = "Chakra Petch" # should match the name on Google Fonts!
highlight = true highlight = true
highlightStyle = "solarized-dark" highlightStyle = "solarized-dark"
highlightLanguages = ["go", "haskell", "kotlin", "scala", "swift"] highlightLanguages = ["go", "haskell", "kotlin", "scala", "swift"]
css = ["css/custom.css"]
[[menu.main]] [[menu.main]]
url = "/" url = "/"
name = "Home" name = "Home"
weight = 1 weight = 1
[[menu.main]]
url = "/post/"
name = "Posts"
weight = 2
[[menu.main]] [[menu.main]]
url = "/project/" url = "/project/"
name = "Projects" name = "Projects"
@ -38,26 +36,22 @@ googleAnalytics = ""
# The list of available icons can be found at http://fontawesome.io/icons/ # The list of available icons can be found at http://fontawesome.io/icons/
[[menu.icon]] [[menu.icon]]
url = "mailto:me@example.com" url = "mailto:info@cmtec.se"
name = "envelope-o" name = "envelope-o"
weight = 1 weight = 1
[[menu.icon]] [[menu.icon]]
url = "https://github.com/username/" url = "https://git.cmtec.se"
name = "github" name = "gitlab"
weight = 2 weight = 2
[[menu.icon]] [[menu.icon]]
url = "https://twitter.com/username/" url = "https://github.com/cmtec"
name = "twitter" name = "github"
weight = 3 weight = 3
[[menu.icon]] [[menu.icon]]
url = "https://www.linkedin.com/in/username/" url = "https://soundcloud.com/cmtec"
name = "linkedin" name = "soundcloud"
weight = 4 weight = 4
[[menu.icon]]
url = "https://www.stackoverflow.com/username/"
name = "stack-overflow"
weight = 5

0
content/_index.md Normal file
View File

15
layouts/index.html Normal file
View File

@ -0,0 +1,15 @@
{{ partial "header" . }}
<main>
<div class="intro">
{{ with .Site.Params.profilePic }} <img src="{{ . }}"> {{ end }}
<h2>{{ markdownify .Site.Params.Description }}</h2>
</div>
</main>
{{ partial "footer" . }}

4
static/css/custom.css Normal file
View File

@ -0,0 +1,4 @@
.navbar.navbar-default.navbar-fixed-top {
background: #000;
border-color: #000;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

File diff suppressed because one or more lines are too long