All Projects → dataCobra → Hugo Vitae

dataCobra / Hugo Vitae

Licence: gpl-2.0
Vitae is a blog theme for Hugo that focuses on your content.

Programming Languages

golang
3204 projects

Projects that are alternatives of or similar to Hugo Vitae

restaurant-hugo
The restaurant is a creative and responsive restaurant website theme in Hugo environment. It is very well decorated theme which will make your website building easier.
Stars: ✭ 50 (-38.27%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
liva-hugo
Liva is a personal blog template powered by Hugo.
Stars: ✭ 192 (+137.04%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
hugo-theme-fluency
A fluent hugo theme.
Stars: ✭ 48 (-40.74%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
Hugo Theme Pure
A pure theme for Hugo
Stars: ✭ 198 (+144.44%)
Mutual labels:  hugo, hugo-theme, hugo-site, hugo-blog-theme
Hugo Theme Jane
A readable & concise theme for Hugo
Stars: ✭ 669 (+725.93%)
Mutual labels:  hugo, hugo-theme, hugo-site, hugo-blog-theme
Hugo Eureka
Eureka is a feature-rich and highly customizable Hugo theme.
Stars: ✭ 239 (+195.06%)
Mutual labels:  hugo, hugo-theme, hugo-site, hugo-blog-theme
Hugo Theme Hello Friend
Pretty basic theme for Hugo that covers all of the essentials. All you have to do is start typing!
Stars: ✭ 586 (+623.46%)
Mutual labels:  blog, hugo, hugo-theme, markdown
twenty-twenty-hugo
Twenty Twenty Hugo is forked from WordPress Twenty Twenty theme. It's fully functional like the WordPress theme.
Stars: ✭ 48 (-40.74%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
navigator-hugo
Navigator Business theme powered by Hugo. It also could be used for a personal portfolio.
Stars: ✭ 133 (+64.2%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
hugo-dusk
Simple, minimalistic dark theme for Hugo.
Stars: ✭ 50 (-38.27%)
Mutual labels:  hugo-theme, hugo, minimalistic, hugo-blog-theme
Hugo Casper Two
Port of Casper 2.x to Hugo
Stars: ✭ 135 (+66.67%)
Mutual labels:  hugo, hugo-theme, hugo-site, hugo-blog-theme
Erblog
A Hugo theme created by ertuil.
Stars: ✭ 49 (-39.51%)
Mutual labels:  blog, hugo, hugo-theme, hugo-blog-theme
Hugo Primer
Hugo theme based on GitHub's Primer CSS
Stars: ✭ 103 (+27.16%)
Mutual labels:  hugo, hugo-theme, hugo-site, hugo-blog-theme
Hugo Ink
Crisp, minimal personal website and blog theme for Hugo
Stars: ✭ 209 (+158.02%)
Mutual labels:  blog, hugo, hugo-theme, hugo-site
persian-hugo
Persian is a box design personal blog theme based on Bootstrap and powered by Hugo. It is very responsive and perfectly fits on any sized screen device.
Stars: ✭ 32 (-60.49%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
geeky-hugo
Geeky is a Personal Hugo blog theme focused on high speed. Geeky is fully responsive, Superfast, and powered by Bootstrap v5.
Stars: ✭ 44 (-45.68%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
bookworm-light
Bookworm is a clean and modern Hugo blog theme focused on high speed and support multiple authors.
Stars: ✭ 59 (-27.16%)
Mutual labels:  hugo-theme, hugo, hugo-site, hugo-blog-theme
Cocoa Hugo Theme
Responsive Hugo blog theme
Stars: ✭ 306 (+277.78%)
Mutual labels:  hugo, hugo-theme, hugo-blog-theme
Hugo Awesome Identity
😤 Awesome Identity is a single-page Hugo theme to introduce yourself.
Stars: ✭ 301 (+271.6%)
Mutual labels:  hugo, hugo-theme, hugo-site
Hugo Theme Zzo
Make a blog with hugo zzo theme!
Stars: ✭ 438 (+440.74%)
Mutual labels:  hugo, hugo-theme, hugo-blog-theme

Vitae

... is a blog theme for Hugo that focuses on your content.

📣 Version 2.1 now released

Finally Version 2.1 is released and available for everyone. This version is considered stable.

But if you encounter a bug or problem, consider writing an issue.

Demo

You can have a look on https://themes.gohugo.io. Link to demo

Screenshot

List of Features

Here is a short list with some of the features that are available for Hugo-Vitae.

For more explanation about various features, scroll down to Features

  • Easy to use, even with GDPR in mind
  • Improved part for SEO
  • Optimized responsiveness for all kinds of devices
  • Multilingual support for month names and other fixed strings
  • Various front matter and configuration options for more flexible use.
  • RSS feed
  • Comments with commento.io or disqus (optional)
  • Google Analytics integration (optional)
  • Twitter cards and Open Graph tags integration
  • Images for post headers
  • Use of a homepage instead of a list of posts
  • Thumbnail Article or Post
  • And some other cool features...

Installation

Stable

Download the latest stable release. It's available as .zip or .tar.gz. Decompress it into your themes/ folder.

Development

Change your current work directory into the root directory of your Hugo site and clone the repository:

cd themes
git clone https://github.com/datacobra/hugo-vitae.git hugo-vitae

For more information about installation read the official setup guide of Hugo.

Features

GDPR in mind

The GDPR has many rules for third party assets, so if you don't want to think about GDPR complaints you can disable every third party asset that is integrated.

Some websites using webfonts from third party sites like google. This theme brings FontAwesome and Roboto(-Slab) directly with it, without having to integrate them via third party sites.

Multilingual support for month names and fixed strings

month names

Due to the currently unavailable feature for multilingual dates in .Date from Go. It is possible to create a month.yaml in the data folder of your Hugo site root directory. There is also an example file in exampleSite/data/.

cat > month.yaml << EOF
1: "Jan"
2: "Feb"
3: "Mar"
4: "Apr"
5: "May"
6: "Jun"
7: "Jul"
8: "Aug"
9: "Sep"
10: "Oct"
11: "Nov"
12: "Dec"
EOF

fixed strings

There are some fixed strings in the html files that normally uses only the set language. But if you create a folder i18n/ in the root directory of your hugo site and copy the en.yaml that comes with the theme you can edit the fixed strings to your liking. Don't forget to also set defaultContentLanguage = "en" to the new language.

mkdir i18n
cd i18n
cp ../themes/hugo-vitae/i18n/en.yaml en.yaml
# Edit the new language file

FontAwesome for social icons

FontAwesome is mainly used for the icons of the social navbar in the top right corner of the theme. In the config of your Hugo website there is a param called icon for the params.social section. I could look like this:

[[params.social]]
name = "Github"
icon = "fab fa-github"
url = "https://github.com/dataCobra/hugo-vitae"

On the FontAwesome website, you can look up every free icon and also the information you need to put into this icon param.

Site configuration options

All configuration options can be looked up in the exampleSite/config.toml.

Front matter options

math(bool)

Add math typesetting with KaTeX to the content page.

author(string) and authorlink(string)

Add author of a page and if you want, add a link to the author.

nofeed(bool)

Don't add page to RSS.

notaxonomy(list)

Disable specific taxonomies for a page.

commentable(bool)

Enable/Disable comments for this specific page.

hidden(bool)

Hide page from the mainSection of the homepage.

norobots(bool)

Disallow page in robots.txt for search engines.

nodate(bool)

Hide the publish date of the page. Useful for about pages or pages required for legal reasons.

image(string)

Add an image with /path/to/img to your post. If the path of the image in the hugo site directoy is /static/img/picture.jpg, the correct path for the front matter is /img/picture.jpg.

imagetext(string)

This is the alternate text for the image that could be added via image front matter.

Credits

Licensed under the GPL-2.0.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].