53 lines
1.6 KiB
Python
53 lines
1.6 KiB
Python
title = 'Services & Pricing'
|
|
|
|
content = {
|
|
'Primary services': [
|
|
{
|
|
'title': 'Walking',
|
|
'images': [
|
|
'img/services/dog_walking_card_sm.png',
|
|
'img/services/dog_walking_card_md.png',
|
|
'img/services/dog_walking_card_lg.png',
|
|
'img/services/dog_walking_card_xl.png',
|
|
'img/services/dog_walking_card_xxl.png'],
|
|
'price': '$20/visit',
|
|
'included': [
|
|
'30 minute walk.',
|
|
'Bags for poop clean-up.']
|
|
},
|
|
{
|
|
'title': 'Drop-in',
|
|
'images': [
|
|
'img/services/drop_in_card_sm.png',
|
|
'img/services/drop_in_card_md.png',
|
|
'img/services/drop_in_card_lg.png',
|
|
'img/services/drop_in_card_xl.png',
|
|
'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': [
|
|
'img/services/house_sitting_card_sm.png',
|
|
'img/services/house_sitting_card_md.png',
|
|
'img/services/house_sitting_card_lg.png',
|
|
'img/services/house_sitting_card_xl.png',
|
|
'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
|
|
|