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