blob: d719941d19082e969f0020bca597bb10b22ac96b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% extends "base.html" %} {% block title %} about {% endblock %} {% block
heading %}
<h1>about</h1>
{% endblock %} {% block content %}
<p>
index.cooking is a simple website that allows you to add your favourite
recipes from the internet to your own personal searchable index (hence the
name).
</p>
<p>
Simply add URLs for your recipes and index.cooking will remove all the bloat
and stories about grandmother's blah blah blah....and just give you the info
you need to cook your favourite meals.
</p>
<p>
Right now index.cooking supports extracting markup from Wordpress sites using
Yoast SEO Schema. If you have other websites that you would like us to index,
then reach out <a href="/contact">here.</a>
</p>
{% endblock %}
|