display info when there are no recipes
This commit is contained in:
parent
f088650669
commit
68763c6fe7
1 changed files with 8 additions and 1 deletions
|
@ -2,11 +2,11 @@
|
||||||
title: Home
|
title: Home
|
||||||
layout: default
|
layout: default
|
||||||
---
|
---
|
||||||
|
{%- if site.recipes.size > 1 %}
|
||||||
<h2 class='no-bg'>Recipes</h2>
|
<h2 class='no-bg'>Recipes</h2>
|
||||||
<p class='subtle'>Showing {% if site.recipes_per_page > site.recipes.size %}{{ site.recipes_per_page}}{% else %}{{ site.recipes.size }}{% endif %} results.</p>
|
<p class='subtle'>Showing {% if site.recipes_per_page > site.recipes.size %}{{ site.recipes_per_page}}{% else %}{{ site.recipes.size }}{% endif %} results.</p>
|
||||||
{% include recipes.html %}
|
{% include recipes.html %}
|
||||||
|
|
||||||
{%- if site.recipes.size > 1 %}
|
|
||||||
<h2 class='no-bg'>Stats</h2>
|
<h2 class='no-bg'>Stats</h2>
|
||||||
{%- assign steps_total = 0 -%}
|
{%- assign steps_total = 0 -%}
|
||||||
{%- assign longest_recipe = site.recipes | first -%}
|
{%- assign longest_recipe = site.recipes | first -%}
|
||||||
|
@ -51,4 +51,11 @@ layout: default
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
{%- else -%}
|
||||||
|
{%- comment -%} 0 recipes {%- endcomment -%}
|
||||||
|
<h2>No recipes</h2>
|
||||||
|
<p>
|
||||||
|
No recipes found. Ensure that there is at least one recipe file in the <tt>_recipes</tt> directory. See <a class='dark' href='/help.html'>the help page</a> for more information.
|
||||||
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue