Added Changelog

This commit is contained in:
Vicky 2017-04-20 11:47:18 +08:00
parent 87faa199b9
commit faf627d2c8
3 changed files with 35 additions and 32 deletions

13
CHANGELOG.md Normal file
View file

@ -0,0 +1,13 @@
#Version 2.00 - April 20 2017
- Load speed improvements:
- Lighter smooth scrolling effect using a little jQuery
- Added option to show author's local time in Contact section
- Social icons are now totally customizable via config - add as many as you want
#Version 1.00 - March 25 2017
- Standardized layout using bulma
- Minified CSS for faster loading
- Responsive hamburger menu on mobile view
- Choose your header height via config

View file

@ -22,6 +22,8 @@ tagline = "I'm a theme for Hugo." # Appears after the introduction
introheight = "large" # Input either 'medium' or 'large' or 'fullheight'
avatar = "img/profile.png" # Path to image in static folder eg. img/avatar.png
email = "youremail@email.com" # Shows in contact section, or leave blank to omit
localtime = true # Show your current local time in contact section
timezone = "America/Los_Angeles" # Your timezone as in the TZ* column of this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
dateform = "Jan 2, 2006"
dateformfull = "Mon Jan 2 2006 15:04:05 EST"
cachebuster = true # Add the current unix timestamp in query string for cache busting css assets
@ -31,15 +33,6 @@ highlightjs = true # Syntax highlighting
lang = "en"
footertext = "" # Text to show in footer (overrides default text)
# Social icons appear in introduction and contact section. Input your username only, eg "you" as it appears in "twitter.com/you"
linkedin = "you"
twitter = "you"
github = "you"
codepen = "you"
pinterest = ""
facebook = ""
googleplus = ""
showblog = true # Show Blog section on home page
showallposts = false # Set 'true' to list all posts on home page, or set 'false' to link to separate blog list page
showlatest = true # Show latest blog post summary
@ -59,3 +52,19 @@ project2title = "Project 2"
project3link = "#"
project3img = "img/project3.jpg"
project3title = "Project 3"
# Social icons appear in introduction and contact section. Add as many more as you like.
# Find icon names here: http://fontawesome.io/cheatsheet/
[[params.social]]
url = "https://twitter.com/"
icon = "twitter"
[[params.social]]
url = "https://facebook.com/"
icon = "facebook"
[[params.social]]
url = "https://linkedin.com/"
icon = "linkedin"

View file

@ -1,26 +1,7 @@
<div class="social-icons">
{{ if .Site.Params.twitter }}
<a href="https://twitter.com/{{ .Site.Params.twitter }}" target="_blank"><i class="fa fa-twitter"></i></a>
{{ end }}
{{ if .Site.Params.linkedin }}
<a href="https://linkedin.com/in/{{ .Site.Params.linkedin }}" target="_blank"><i class="fa fa-linkedin"></i></a>
{{ end }}
{{ if .Site.Params.github }}
<a href="https://github.com/{{ .Site.Params.github }}" target="_blank"><i class="fa fa-github"></i></a>
{{ end }}
{{ if .Site.Params.codepen }}
<a href="https://codepen.io/{{ .Site.Params.codepen }}" target="_blank"><i class="fa fa-codepen"></i></a>
{{ end }}
{{ if .Site.Params.pinterest }}
<a href="https://pinterest.com/{{ .Site.Params.pinterest }}" target="_blank"><i class="fa fa-pinterest"></i></a>
{{ end }}
{{ if .Site.Params.facebook }}
<a href="https://facebook.com/{{ .Site.Params.facebook }}" target="_blank"><i class="fa fa-facebook"></i></a>
{{ end }}
{{ if .Site.Params.googleplus }}
<a href="https://plus.google.com/+{{ .Site.Params.googleplus }}" target="_blank"><i class="fa fa-google-plus"></i></a>
{{ end }}
{{ if .Site.RSSLink }}
<a href="{{ .Site.RSSLink }}"><i class="fa fa-rss"></i></a>
{{ range .Site.Params.social }}
<a href="{{ .url }}">
<i class="fa fa-{{ .icon}}"></i>
</a>
{{ end }}
</div>