mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-30 01:08:26 -05:00
Fix typo in data docs; update section pagination for migrations to correctly point back to data
This commit is contained in:
@@ -46,16 +46,18 @@ In `_data/members.yml`:
|
||||
This data can be accessed via `site.data.members` (notice that the filename
|
||||
determines the variable name).
|
||||
|
||||
You can now do render the list of members in a template:
|
||||
You can now render the list of members in a template:
|
||||
|
||||
{% highlight html %}
|
||||
{% raw %}
|
||||
<ul>
|
||||
{% raw %}{% for member in site.data.members %}{% endraw %}
|
||||
{% for member in site.data.members %}
|
||||
<li>
|
||||
<a href="https://github.com/{% raw %}{{ member.github }}{% endraw %}">
|
||||
{% raw %}{{ member.name }}{% endraw %}
|
||||
<a href="https://github.com/{{ member.github }}">
|
||||
{{ member.name }}
|
||||
</a>
|
||||
</li>
|
||||
{% raw %}{% end %}{% endraw %}
|
||||
{% end %}
|
||||
</ul>
|
||||
{% endraw %}
|
||||
{% endhighlight %}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
layout: docs
|
||||
title: Blog migrations
|
||||
prev_section: variables
|
||||
prev_section: data
|
||||
next_section: templates
|
||||
permalink: /docs/migrations/
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user