preparing for content refacoring, moved content from config.py to content module

This commit is contained in:
2023-09-10 19:46:27 -04:00
parent a0498a3774
commit 61809acf44
5 changed files with 167 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
title = 'Services & Pricing'
content = {
'Primary services': [
{
'title': 'Walking',
'images': [
'../static/img/services/dog_walking_card_sm.png',
'../static/img/services/dog_walking_card_md.png',
'../static/img/services/dog_walking_card_lg.png',
'../static/img/services/dog_walking_card_xl.png',
'../static/img/services/dog_walking_card_xxl.png'],
'price': '$20/visit',
'included': [
'30 minute walk.',
'Bags for poop clean-up.']
},
{
'title': 'Drop-in',
'images': [
'../static/img/services/drop_in_card_sm.png',
'../static/img/services/drop_in_card_md.png',
'../static/img/services/drop_in_card_lg.png',
'../static/img/services/drop_in_card_xl.png',
'../static/img/services/drop_in_card_xxl.png'],
'price': '$20/visit',
'included': [
'30 minute in home visit.',
'Bags for poop clean-up.']
},
{
'title': 'House sitting',
'images': [
'../static/img/services/house_sitting_card_sm.png',
'../static/img/services/house_sitting_card_md.png',
'../static/img/services/house_sitting_card_lg.png',
'../static/img/services/house_sitting_card_xl.png',
'../static/img/services/house_sitting_card_xxl.png'],
'price': '$38/visit',
'included': [
'Animal care.',
'In-home overnight stays.']
}
]
}
def get_title():
return title
def get_content():
return content