Skip to content

stefanbirkner/stefan-birkner.de

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stefan-birkner.de

This is the project for the website http://stefan-birkner.de. It uses the TaskRunner Grunt and the static site generator Hugo.

Serving the page at localhost

You can see the website at http://localhost:4000 if you run Grunt.

npm install
grunt

The default task uses Hugo to serve the site.

Deployment

Commit the current changes and then run

npm install
grunt deploy

Dependency Management

This project uses Bower for dependency management. Alle dependencies are stored in the project (app/bower_components) because we have no repository manager running. You add or change a dependency by adding or changing it in bower.json. Run bower install afterwards and check in the resolved dependencies.

Font Awesome Icons

stefan-birkner.de uses icons of Font Awesome. You can add an icon to a page with the shortcut fontawesome. The following example adds GitHub's Octocat:

{{< icon github >}}

Before you can use an icon you have to download the SVG file from https://github.com/FortAwesome/Font-Awesome/tree/master/svgs to the directory app/fontawesome.

Thank you Nick Galbreath for your tutorial.