Releases: mmistakes/so-simple-theme
Releases · mmistakes/so-simple-theme
2.3.2
2.3.1
2.3.0
Maintenance
- Update gems
- Remove Octopress dependency
- Replace
{% highlight %}
tags with GitHub Flavored Markdown backticks
Enhancements
- Replace custom
feed.xml
withjekyll-feed
plugin.
2.2.0
2.1.1
New
- Post excerpts now display on index pages (
/blog
,/articles
, and the home page) if set in a post's YAML Front Matter.
Updates
- Improved comments in
.scss
partials and removed some unused styles I missed when posting from Less. - Enable Disqus comments globally vs. post per post basis (#94)
- Fixed some other Disqus related bugs that displayed
<noscript>
text on pages that had comments disabled on. - Removed Google Authorship from
<head>
(#115) - Improved Jekyll search feature by removing the input box overlay that performed poorly on mobile and touch devices (#88). In the future maybe a form could be included on every page, but for it can be found at
/search/
which is linked in the top navigation. - Fixed typos and other minor cleanup in theme's documentation.
1.4.0
New
Added rake tasks to create new posts or pages. Using either rake new_post
or rake new_page
will prompt you for a title and tags to classify them. Example below:
rake new_post
Enter a title for your post: My Awesome Post
Enter tags to classify your post (comma separated): web development, code
Creating new post: _posts/2014-02-10-my-awesome-post.md
There are a few configuration variables that can be changed in Rakefile.rb. By default posts and pages will be created in MarkDown using the .md extension.
1.3.2
New
- Added simple social share links to the sidebar. To enable on a post by post basis add
share: true
to a post's YAML front matter.
1.3.1
New
- Added Grunt build script for easier theme development. Preprocesses
.less
into.css
, concatenates and minifies.js
, and optimizes all images. - Added search by post title overlay using Christian Fei’s Simple Jekyll jQuery plugin.