Initial commit for theme nederburg
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
# Hugo default output directory
|
||||
/public
|
7
archetypes/default.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
image: ""
|
||||
---
|
||||
|
80
config.toml
Normal file
@ -0,0 +1,80 @@
|
||||
baseurl = "https://hyteck.de/"
|
||||
title = "Hyteck"
|
||||
theme = "hugo-nederburg-theme"
|
||||
languageCode = "en-us"
|
||||
# Enable comments by entering your Disqus shortname
|
||||
disqusShortname = ""
|
||||
# Enable Google Analytics by entering your tracking code
|
||||
googleAnalytics = ""
|
||||
preserveTaxonomyNames = true
|
||||
paginate = 5 #frontpage pagination
|
||||
|
||||
[privacy]
|
||||
# Google Analytics privacy settings - https://gohugo.io/about/hugo-and-gdpr/index.html#googleanalytics
|
||||
[privacy.googleAnalytics]
|
||||
# set to true to disable service
|
||||
disable = true
|
||||
# set to true to meet General Data Protection Regulation (GDPR)
|
||||
anonymizeIP = true
|
||||
respectDoNotTrack = true
|
||||
useSessionStorage = true
|
||||
|
||||
[params]
|
||||
# Unmark to use post folder for images. Default is static folder.
|
||||
#usepostimgfolder = true
|
||||
slogan = "Blog of Julian-Samuel Gebühr"
|
||||
description = "Blog of Julian-Samuel Gebühr" # meta description
|
||||
# You need to set author to have an author bio. If you have a writer in the markdown file it will override this.
|
||||
author = "Julian-Samuel Gebühr"
|
||||
authorLink = "https://hyteck.de/"
|
||||
bio = [
|
||||
"Student of Medical Engineering, He/Him"
|
||||
]
|
||||
copyright = [
|
||||
"© 2019 Julian-Samuel Gebühr"
|
||||
]
|
||||
|
||||
|
||||
# Contact page
|
||||
# Since this template is static, the contact form uses www.formspree.io as a
|
||||
# proxy. The form makes a POST request to their servers to send the actual
|
||||
# email. Visitors can send up to a 1000 emails each month for free.
|
||||
#
|
||||
# What you need to do for the setup?
|
||||
#
|
||||
# - set your email address under 'email' below (it is also used in Gravatar for the bio).
|
||||
# - upload the generated site to your server
|
||||
# - send a dummy email yourself to confirm your account
|
||||
# - click the confirm link in the email from www.formspree.io
|
||||
# - you're done. Happy mailing!
|
||||
email = "julian-samuel@gebuehr.net"
|
||||
|
||||
# Nav links in the side bar
|
||||
[[menu.main]]
|
||||
name = "Home"
|
||||
url = "/"
|
||||
weight = 1
|
||||
|
||||
[[menu.main]]
|
||||
name = "About"
|
||||
url = "about/"
|
||||
weight = 2
|
||||
|
||||
[[menu.main]]
|
||||
name = "Get in touch"
|
||||
url = "contact/"
|
||||
weight = 3
|
||||
|
||||
# this will also be in author bio if there is no writer.
|
||||
[params.social]
|
||||
github = "https://github.com/GerJuli"
|
||||
email = "julian-samuel@gebuehr.net"
|
||||
twitter = "https://twitter.com/jgebuehr"
|
||||
linkedin = "https://www.linkedin.com/in/julian-samuel-geb%C3%BChr-2bb38a139/n"
|
||||
stackoverflow = "https://stackoverflow.com/users/9908321/gerjuli"
|
||||
instagram = "https://www.instagram.com/julian_samuel_gebuehr/"
|
||||
facebook = "https://www.facebook.com/juliansamuel.gebuhr"
|
||||
#pinterest = "full profile url in pinterest"
|
||||
#googleplus = "full profile url in googleplus"
|
||||
rss = true
|
||||
|
60
config_casper.toml.txt
Normal file
@ -0,0 +1,60 @@
|
||||
baseurl = "https://hyteck.de/"
|
||||
theme = "hugo-nederburg-theme"
|
||||
languageCode = "en-US"
|
||||
disqusShortname = ""
|
||||
paginate = 6
|
||||
#SectionPagesMenu = "main"
|
||||
|
||||
[params]
|
||||
title = "Hyteck"
|
||||
subtitle = "Blog of Julian-Samuel Gebühr"
|
||||
|
||||
cover = "uploads/header.jpg"
|
||||
description = "This is a mixture of personal blog and projects"
|
||||
metaDescription = "Projects and stuff from Julian-Samuel Gebühr"
|
||||
googleAnalytics = "Projects and stuff from Julian-Samuel Gebühr"
|
||||
customCSS = []
|
||||
RSSLink = ""
|
||||
|
||||
twitterName = "j-s.gebuehr"
|
||||
fbName = ""
|
||||
githubName = "GerJuli"
|
||||
|
||||
logo = "uploads/hyteck2.png"
|
||||
orgName = ""
|
||||
orgWebsite = ""
|
||||
orgDescription = ""
|
||||
|
||||
author = "Julian-Samuel Gebühr"
|
||||
authorAvatar = "uploads/julian_neutral_edited_smallerish.png"
|
||||
authorLocation = "Tübingen, Germany"
|
||||
authorWebsite = "https://hyteck.de"
|
||||
authorDescription = "Student of Medical Engineering, He/Him"
|
||||
|
||||
pageNotFoundTitle = "404 - Page not found"
|
||||
|
||||
#casper or caspertwo
|
||||
singleViewStyle = "casper"
|
||||
|
||||
[permalinks]
|
||||
post = "/:slug/"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Home"
|
||||
url = "/"
|
||||
weight = 200
|
||||
|
||||
[[menu.main]]
|
||||
name = "Projects"
|
||||
url = "/tags/projects/"
|
||||
weight = 100
|
||||
|
||||
[[menu.main]]
|
||||
name = "Pictures"
|
||||
url = "/categories/pictures/"
|
||||
weight = 99
|
||||
|
||||
[[menu.main]]
|
||||
name = "About"
|
||||
url = "/about/"
|
||||
weight = 95
|
26
content/about.md
Normal file
@ -0,0 +1,26 @@
|
||||
---
|
||||
title: "About"
|
||||
date: 2019-08-20T19:56:10+02:00
|
||||
draft: False
|
||||
image: ""
|
||||
tags: [communication, me]
|
||||
---
|
||||
|
||||
# Who am I
|
||||
I am Julian, 21 years old and currently studying Medical Engineering in Stuttgart and Tübingen (Germany). Stuttgart AND Tübingen? Yes - as Stuttgart is good in engineering and as Tübingen is in medicin they decided to start the first study program where students are enrolled in two universities.
|
||||
|
||||
My focus right now is neuroscience, as I am working in the Lab of "Functional and Translational Neurosurgery" led by Prof. Gharabaghi.
|
||||
|
||||
I always lived in Baden-Würrtemberg, I spend my schooltime in Kirchheim unter Teck.
|
||||
|
||||
I spend my time with climbing, sailing and work for the students union. Also I do a lot of programming, my biggest project so far is ILMO, an library management tool.
|
||||
I started with Java, learned DrRacket (very funny Lisp dialect) for university, and the started "real" projects with PHP and Python. I also did a bit of machine learning stuff in R.
|
||||
|
||||
# Contact
|
||||
|
||||
* E-Mail: julian-samuel@gebuehr.net
|
||||
* Matrix: @perdix:matrix.org
|
||||
* Threema: 2A724TYR
|
||||
* Mastodon: @heimdall@chaos.social
|
||||
* Twitter: j-s.gebuehr@twitter.com
|
||||
* Signal, Whatsapp, Phone: Available, use one of the other options to get my phone number
|
24
content/post/ILMO.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
title: "ILMO"
|
||||
date: 2019-08-20T16:57:55+02:00
|
||||
draft: false
|
||||
image: "uploads/ILMO_bordered.png"
|
||||
tags: [FOSS]
|
||||
categories: [Projects]
|
||||
---
|
||||
|
||||
# ILMO
|
||||
ILMO is my first bigger FOSS-project. It aims at managing small libraries as found in a department of a university.
|
||||
|
||||
## History:
|
||||
I started to create ILMO for the (rather small) library in the study rooms of mediacal engineering. It contains about 300 books, 120 labcoats and safty glasses and some more stuff. As I was in charge of the lends I started to get annoyed by our paper-based solution. Especially when a bunch of people was trying to lend things it took to much time. Also reminding people to retun stuff was unnecessary complicated. Therfore I started to programm this library management tool from scratch. I only reused some basic database and session functions. The project is still a field of learning how to do things for me. Nevertheless after about half a year of development and many tests the system went live in winter 2018. Since then I fill the bugtracker and slowly improve workflows and add functions.
|
||||
|
||||
## License
|
||||
Of course the program is open-source and licensed under GPLv3.
|
||||
|
||||
## Demo
|
||||
Right now there is no public available demo but if you are interested I will lead you the way to my test server.
|
||||
|
||||
## Using ILMO
|
||||
You know someone who could use somthing like this? I would love to see this software in more libraries.
|
||||
Right now the programm is optimized to the needs of our student union but I would be happy to work more on this.
|
11
content/post/hello-world.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
title: "Hello World"
|
||||
date: 2019-08-20T16:35:58+02:00
|
||||
draft: False
|
||||
categories: ["me"]
|
||||
---
|
||||
# Hello world
|
||||
Welcome to my new blog! I don't know what this will all be about - but we will see :)
|
||||
|
||||
The blog is created with the static site generator HUGO and the (customized) theme Casper Two.
|
||||
We will see how this works out, I can imagine to chnge the theme in the future - or to do more customizations.
|
BIN
static/uploads/ILMO_bordered.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
static/uploads/ILMO_long_shelf.png
Normal file
After Width: | Height: | Size: 8.0 KiB |
BIN
static/uploads/header.jpg
Normal file
After Width: | Height: | Size: 1.7 MiB |
BIN
static/uploads/hyteck.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
static/uploads/hyteck2.png
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
static/uploads/ilmo.png
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
static/uploads/ilmo_bookshelf.svg.png
Normal file
After Width: | Height: | Size: 56 KiB |
BIN
static/uploads/ilmo_bookshelf_small.svg.png
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
static/uploads/julian_neutral_edited_smallerish.png
Normal file
After Width: | Height: | Size: 961 KiB |
1
themes/casper-two
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit b747d89e76635d9252089e93268b2209d85571db
|
1
themes/hugo-nederburg-theme
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit d99760bac630af13aaba1f3e66107328c2fa7991
|
1
themes/solar-theme-hugo
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit c200ea90bfc1a1052cd474b4ae751e28395b04fa
|