Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicky <vicky@vickylai.com>2018-09-15 06:23:33 +0300
committerVicky <vicky@vickylai.com>2018-09-15 06:23:33 +0300
commitc13e70a8433f6cb7922c2cd8ecd4fc944985a9e8 (patch)
treee40759503a06fb81f2439190957aa2261979cf09
parentef92cd4822ea73a7dc06f2a68b8977e49a512921 (diff)
Remove unused partial, CHANGELOG file
- CHANGELOG removed in favour of GitHub release notes
-rw-r--r--CHANGELOG.md130
-rw-r--r--layouts/partials/footer.html9
2 files changed, 0 insertions, 139 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index 4cd6dda..0000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,130 +0,0 @@
-## Version 4.0.0 - XXX XX 2018
-
-TODO
-
-## Version 3.4.0 - Jun 24 2018
-
-Changes to Projects display options:
-
-- Add functionality to limit number of projects shown on index page
-- Projects will automatically display in 2 or 3 columns for even or odd numbers respectively
-- Create new template for projects list page
-
-Improve list templates:
-
-- List pages will display content from `_index.md`
-
-Housecleaning:
-
-- Remove dead code
-- Use GetPage logic on index.html and in nav menus
-- Site still builds with no content
-
-*Thank you to @Hanzei for your feature work and @Setherizor for the great suggestion.*
-
-## Version 3.3.2 - Jun 10 2018
-
-Travis CI integration, why not.
-
-Bug fixes:
-
-- Update to relative URLs
-- Add links to blog and projects in navigation on list and single pages
-
-*Thank you to @Hanzei for adding testing and helping to squish 🐛*
-
-## Version 3.3.1 - Mar 28 2018
-
-- Fix for single page navigation
-
-*Thank you to @pmviva for the contribution!*
-
-## Version 3.3.0 - Mar 25 2018
-
-- Default parameters implemented so theme renders without custom config parameters
-- Local assets placed
-
-*Thank you very much to @paskal and @Hanzei for your important contributions!*
-
-## Version 3.2.1 - Feb 3 2018
-
-- Allow highlight theme choice using built-in Chroma and `pygmentsStyle` config
-- Improvement for modal rendering
-
-*Thanks to @darkk for the contribution!*
-
-- Included Sass files
-
-# Version 3.2 - Jan 26 2018
-
-- Fixed "theme" namespace bug in exampleSite config file that prevented site building after Hugo v0.32.2 (#22)
-- Updates supporting up to Hugo v0.35dev
-- Added default templates for taxonomy pages
-- Made asset links in head partial relative
-
-*Thanks to @nancym, @penance316, @quendera, and @mrshannon for helping me squish 🐞!*
-
-- Parameter names changed to camelCase
-
-*Thanks to @danieldiaz14 for the contribution!*
-
-## Version 3.1.2 - Dec 30 2017
-
-- Updated to FontAwesome 4.7.0
-- Fixed card background color in dark theme css
-
-*Thanks to [@chrislabarge](https://github.com/chrislabarge) for the contribution and [@Lytigas](https://github.com/Lytigas) for bug catching!*
-
-## Version 3.1.1 - Dec 4 2017
-
-- Fixed blog posts ordered by date (reversed as of Hugo v0.31)
-
-*Thanks to [@pmviva](https://github.com/pmviva) for the contribution!*
-
-# Version 3.1 - Nov 14 2017
-
-- Added columns option to projects section
-- Fixed bugs with project section modal links
-
-*Thanks to [@Heirak](https://github.com/Heirak) for the suggestions!*
-
-# Version 3.0 - Nov 13 2017
-
-- Projects are a content section now instead of 3 static config file entries:
- - Add any number of projects to your site
- - Projects on the main page can be external links to other websites, or they will pop open a window with details
-- Updates supporting Hugo version 3.0+
-- Misc bug fixes
-
-*Thanks to [@lucab85](https://github.com/lucab85) for the contribution!*
-
-## Version 2.2 - Jul 25 2017
-
-- Avatar made optional
-- Fixed bug in CSS dark theme
-
-*Thanks to [@alanfran](https://github.com/alanfran) for the contribution!*
-
-- Removed dead code (font loads) from header
-
-## Version 2.1 - May 25 2017
-
-- Fixed issue (#7) causing '_fades.css' to not load with some site structures
- - file '_fades.css' is now unnecessary
-- Added baseURL to header assets in case the lack of was also causing complications
-
-*Thanks to [@kirederik](https://github.com/kirederik) for the contribution!*
-
-# Version 2.0 - 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.0 - March 25 2017
-
-- Standardized layout using bulma
-- Minified CSS for faster loading
-- Responsive hamburger menu on mobile view
-- Choose your header height via config
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
deleted file mode 100644
index 0aed20f..0000000
--- a/layouts/partials/footer.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<div class="section" id="footer"><!-- Begin Footer section -->
- <div class="container has-text-centered"><!-- Begin Footer container -->
- {{ if .Site.Params.footerText }}
- <span class="footer-text">{{ .Site.Params.footerText | markdownify }}</span>
- {{ else }}
- <span class="footer-text"><a href="https://github.com/vickylai/hugo-theme-introduction" target="_blank" rel="noopener">Introduction</a> theme for <a href="http://gohugo.io/" target="_blank" rel="noopener">Hugo</a>. Made with <a href="https://vickylai.com" target="_blank" rel="noopener"><i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i></a> by open source contributors.</span>
- {{ end }}
- </div><!-- End Footer container -->
-</div><!-- End Footer section -->