preparing for content refacoring, moved content from config.py to content module
This commit is contained in:
52
all_paw_care/content/pages/services/__init__.py
Normal file
52
all_paw_care/content/pages/services/__init__.py
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user