diff options
| -rw-r--r-- | templates/en/getting.htm | 6 | ||||
| -rw-r--r-- | templates/en/gifts.htm | 7 | ||||
| -rw-r--r-- | templates/en/lodging.htm | 6 |
3 files changed, 19 insertions, 0 deletions
diff --git a/templates/en/getting.htm b/templates/en/getting.htm new file mode 100644 index 0000000..85b4e27 --- /dev/null +++ b/templates/en/getting.htm @@ -0,0 +1,6 @@ +{%extends 'layout.htm' %} +{%block content%} +<p style="text-align:center"> + Coming soon! +</p> +{% endblock %} diff --git a/templates/en/gifts.htm b/templates/en/gifts.htm new file mode 100644 index 0000000..5242cfa --- /dev/null +++ b/templates/en/gifts.htm @@ -0,0 +1,7 @@ +{%extends 'layout.htm' %} +{%block content%} +<p style="text-align:center"> + We are not asking for any gifts considering the expense of the trip + to France. +</p> +{% endblock %} diff --git a/templates/en/lodging.htm b/templates/en/lodging.htm new file mode 100644 index 0000000..85b4e27 --- /dev/null +++ b/templates/en/lodging.htm @@ -0,0 +1,6 @@ +{%extends 'layout.htm' %} +{%block content%} +<p style="text-align:center"> + Coming soon! +</p> +{% endblock %} |
