Update the site history
This commit is contained in:
parent
40928364d4
commit
84f9bcdd42
|
@ -14,8 +14,6 @@
|
||||||
[hakiri]: https://hakiri.io/github/jekyll/jekyll/master
|
[hakiri]: https://hakiri.io/github/jekyll/jekyll/master
|
||||||
[travis]: https://travis-ci.org/jekyll/jekyll
|
[travis]: https://travis-ci.org/jekyll/jekyll
|
||||||
|
|
||||||
By Tom Preston-Werner, Nick Quaranto, Parker Moore, and many [awesome contributors](https://github.com/jekyll/jekyll/graphs/contributors)!
|
|
||||||
|
|
||||||
Jekyll is a simple, blog-aware, static site generator perfect for personal, project, or organization sites. Think of it like a file-based CMS, without all the complexity. Jekyll takes your content, renders Markdown and Liquid templates, and spits out a complete, static website ready to be served by Apache, Nginx or another web server. Jekyll is the engine behind [GitHub Pages](http://pages.github.com), which you can use to host sites right from your GitHub repositories.
|
Jekyll is a simple, blog-aware, static site generator perfect for personal, project, or organization sites. Think of it like a file-based CMS, without all the complexity. Jekyll takes your content, renders Markdown and Liquid templates, and spits out a complete, static website ready to be served by Apache, Nginx or another web server. Jekyll is the engine behind [GitHub Pages](http://pages.github.com), which you can use to host sites right from your GitHub repositories.
|
||||||
|
|
||||||
## Philosophy
|
## Philosophy
|
||||||
|
|
|
@ -33,8 +33,8 @@ of code in your Jekyll templates:
|
||||||
In `_data/members.yml`:
|
In `_data/members.yml`:
|
||||||
|
|
||||||
{% highlight yaml %}
|
{% highlight yaml %}
|
||||||
- name: Tom Preston-Werner
|
- name: Eric Mill
|
||||||
github: mojombo
|
github: konklone
|
||||||
|
|
||||||
- name: Parker Moore
|
- name: Parker Moore
|
||||||
github: parkr
|
github: parkr
|
||||||
|
@ -47,7 +47,7 @@ Or `_data/members.csv`:
|
||||||
|
|
||||||
{% highlight text %}
|
{% highlight text %}
|
||||||
name,github
|
name,github
|
||||||
Tom Preston-Werner,mojombo
|
Eric Mill,konklone
|
||||||
Parker Moore,parkr
|
Parker Moore,parkr
|
||||||
Liu Fengyun,liufengyun
|
Liu Fengyun,liufengyun
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
|
@ -132,11 +132,11 @@ permalink: "/docs/history/"
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
{: #bug-fixes-v3-0-3}
|
{: #bug-fixes-v3-0-3}
|
||||||
|
|
||||||
* Fix extension weirdness with folders ([#4493]({{ site.repository }}/issues/4493))
|
- Fix extension weirdness with folders ([#4493]({{ site.repository }}/issues/4493))
|
||||||
* EntryFilter: only include 'excluded' log on excluded files ([#4479]({{ site.repository }}/issues/4479))
|
- EntryFilter: only include 'excluded' log on excluded files ([#4479]({{ site.repository }}/issues/4479))
|
||||||
* `Jekyll.sanitized_path`: escape tildes before sanitizing a questionable path ([#4468]({{ site.repository }}/issues/4468))
|
- `Jekyll.sanitized_path`: escape tildes before sanitizing a questionable path ([#4468]({{ site.repository }}/issues/4468))
|
||||||
* `LiquidRenderer#parse`: parse with line numbers ([#4453]({{ site.repository }}/issues/4453))
|
- `LiquidRenderer#parse`: parse with line numbers ([#4453]({{ site.repository }}/issues/4453))
|
||||||
* `Document#<=>`: protect against nil comparison in dates. ([#4446]({{ site.repository }}/issues/4446))
|
- `Document#<=>`: protect against nil comparison in dates. ([#4446]({{ site.repository }}/issues/4446))
|
||||||
|
|
||||||
|
|
||||||
## 3.0.2 / 2016-01-20
|
## 3.0.2 / 2016-01-20
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<footer role="contentinfo">
|
<footer role="contentinfo">
|
||||||
<div class="grid">
|
<div class="grid">
|
||||||
<div class="unit one-third center-on-mobiles">
|
<div class="unit one-third center-on-mobiles">
|
||||||
<p>The contents of this website are © {{ site.time | date: '%Y' }} <a href="http://tom.preston-werner.com/">Tom Preston-Werner</a> under the terms of the <a href="{{ site.repository }}/blob/master/LICENSE">MIT License</a>.</p>
|
<p>The contents of this website are <br />© {{ site.time | date: '%Y' }} under the terms of the <a href="{{ site.repository }}/blob/master/LICENSE">MIT License</a>.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="unit two-thirds align-right center-on-mobiles">
|
<div class="unit two-thirds align-right center-on-mobiles">
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Reference in New Issue