Makes Hours of Operation editable
Torey Heinz
committed Sep 27, 2019
commit 279f8b9a83333b7c19cf30f8193a7d36127fde0f
Showing 3
changed files with
7 additions
and 4 deletions
app/views/snippets/hours.liquid
+1
-4
| @@ | @@ -1,4 +1 @@ |
| - | <strong>Hours of Operation:</strong><br> |
| - | Monday through Friday,<br> |
| - | 8:00 AM to 5:00 PM <br> |
| - | Saturdays by Appointment<br> |
| + | {{ site.metafields.contact_info.hours }} |
config/metafields_schema.yml
+2
-0
| @@ | @@ -10,3 +10,5 @@ contact_info: |
| type: string | |
| email_address: | |
| type: string | |
| + | hours: |
| + | type: text |
config/site.yml
+4
-0
| @@ | @@ -12,4 +12,8 @@ metafields: |
| simple_address: "11276 E. Lakewood Blvd., Holland, MI 49424" | |
| formatted_address: "11276 E. Lakewood Blvd.<br>Holland, MI 49424" | |
| email_address: "Sales@CanvasInnovations.us" | |
| + | hours: "<strong>Hours of Operation:</strong><br> |
| + | Monday through Friday,<br> |
| + | 8:00 AM to 5:00 PM <br> |
| + | Saturdays by Appointment<br>" |
| metafields_ui: {} | |