Introduction theme for Hugo
Find a file
2018-06-10 08:33:44 +02:00
archetypes Version 3.0 2017-11-13 16:01:53 -05:00
exampleSite Updated links. 2018-05-21 20:15:05 -04:00
images Added light and dark themes. 2017-05-14 15:12:23 +08:00
layouts Fix rel URLs (#50) 2018-06-09 19:30:15 -04:00
sass Included Sass, updated CHANGELOG. 2018-02-03 13:05:48 -05:00
static Removed dead code, added default parameters, local assets. 2018-03-25 11:55:27 -04:00
.gitignore Add examplesite/public to gitignore (#48) 2018-06-09 19:48:14 -04:00
.travis.yml Add travis script 2018-06-10 08:33:44 +02:00
CHANGELOG.md Fix version number formatting 2018-06-08 17:31:15 -04:00
LICENSE Update to AGPL 2018-06-08 17:31:55 -04:00
README.md Update to AGPL 2018-06-08 17:31:55 -04:00
theme.toml Updated links. 2018-05-21 20:15:05 -04:00

Introduction theme for Hugo

A minimal, single page, smooth scrolling theme for Hugo.

Main page screenshot

Features:

  • Single scrolling home page
    • About section with profile photo
    • Contact section with option to show your local timezone
    • Optional Projects and Blog sections
  • Light and Dark themes
  • Browser friendly CSS fade-in effect for some pizzaz
  • Smooth scroll-to-section navigation
  • Responsive and fast

Quick start

Get the theme

From the root of your Hugo site:

$ cd themes
$ git clone https://github.com/vickylai/hugo-theme-introduction.git introduction

Configure your site

From the exampleSite, copy config.toml to the root folder of your Hugo site and change the fields as you like.

Start with:

  1. Set your baseurl to your site's domain
  2. Set your blog's title and your first name
  3. Set your introduction header height (use "medium", "large", or "fullheight")
  4. Choose "light" or "dark" theme
  5. Set your avatar image
  6. Set your timezone, if you choose to show it
  7. Choose whether or not to show the Blog and Projects sections, and configure them to your liking
  8. Input your social site urls and font-awesome icon names - use as many as you like

Create About and Contact pages

Run:

$ hugo new about.md 
$ hugo new contact.md

Then edit the markdown files with the content you'd like shown in your main page's About and Contact sections.

Preview your site locally

Use Hugo's built-in server to see your site in action as you make changes.

$ hugo serve -t introduction

Visit localhost:1313 in your browser to see a live preview of your site.

Blog posts

To create a new blog post, run:

$ hugo new blog/your-post-title.md

Projects

To create a new project entry, run:

$ hugo new projects/your-project-name.md

Project front matter

Project parameters look like this:

---
title: "Design"
date: 2017-11-13T12:21:16-05:00
image: "img/plant.jpg"
external_link: ""
weight: 2
---

Projects are ordered on the main page by weight first, then by date.

The image will show up on the main page and in the project's details view. If you don't specify an image, the placeholderimg from your site's config.toml file will be used.

If you don't specify a title, only the photo will show. You can still add content to the file to "caption" the image, and this will show in the popup. (Great way to create a simple gallery!)

If you leave external_link empty, clicking on a project on your main page will pop up a window with the project's details. If you specify a url instead, clicking on the project on your main page will take you to that url.

Contributing

Pull requests for bug fixes and suggestions are welcome.

Contributors are listed in CHANGELOG.md. Thank you so much! 🖤

License

Copyright (C) 2018 Vicky Lai

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.