diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c654661 --- /dev/null +++ b/CHANGELOG.md @@ -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 \ No newline at end of file diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 180d036..0075cbe 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -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" \ No newline at end of file diff --git a/layouts/partials/social.html b/layouts/partials/social.html index 0ef389c..6092ab1 100644 --- a/layouts/partials/social.html +++ b/layouts/partials/social.html @@ -1,26 +1,7 @@
- {{ if .Site.Params.twitter }} - - {{ end }} - {{ if .Site.Params.linkedin }} - - {{ end }} - {{ if .Site.Params.github }} - - {{ end }} - {{ if .Site.Params.codepen }} - - {{ end }} - {{ if .Site.Params.pinterest }} - - {{ end }} - {{ if .Site.Params.facebook }} - - {{ end }} - {{ if .Site.Params.googleplus }} - - {{ end }} - {{ if .Site.RSSLink }} - + {{ range .Site.Params.social }} + + + {{ end }}
\ No newline at end of file