{% extends "base.html" %} {% block h1title %}

Welcome to {{ config.title }}

A simple recipe website that doesn't suck.

{% endblock %} {% block body %} {% if lang != "en" %} {% set section_path = "recipes/_index." ~ lang ~ ".md" %} {% else %} {% set section_path = "recipes/_index.md" %} {% endif %} {% set section = get_section(path=section_path) %}

Latest Recipe

{% set latest = section.pages[0] %}

{{ latest.title }} {{ latest.date | date }}

{% if latest.summary %} {{ latest.summary | safe }} {% endif %}

Website status

I am kind of deprecating the site, since it was basically a response to Luke Smith's challenge to make a minimal recipe site and he's since launched his own site that not-surprisingly has garnered quite a lot of attention. I recommend you check based.cooking.

I will still keep this site up for the foreseeable future, probably until I get tired of paying the domain yearly fee. If, for any reason, you are still interested, you can still submit your recipes by email or pull request.

Make a contribution

If you want to publish your recipe or make this site better, don't hesitate to help. You can find more information on how to contribute here.

Other languages

This site is currently also available in the following languages:

{% endblock %}