generated from CircleCodeHouse/jekyll-amp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
88 lines (81 loc) · 2.67 KB
/
services.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
layout: default
permalink: '/services/'
title: Services
head_title: 'Austin Forest Family | Services'
description: ''
amp_components:
- amp-fit-text
services:
- name: SEALANTS
link: "/sealants/"
- name: CLEANINGS
link: "http://www.mouthhealthy.org/en/az-topics/p/plaque"
- name: INVISALIGN
link: "/invisalign/"
- name: BRACES
link:
- name: WHITENING
link:
- name: CROWNS & BRIDGES
link: "https://www.mouthhealthy.org/en/az-topics/c/Crowns"
- name: ROOT CANAL THERAPY
link: "http://www.mouthhealthy.org/en/az-topics/r/root-canals"
- name: GUM THERAPY
link: "http://www.mouthhealthy.org/en/az-topics/s/scaling-and-root-planing"
- name: CONSERVATIVE WHITE FILLINGS
link: "/fillings/"
- name: IMPLANTS
link: "/implants/"
- name: THIRD MOLAR EXTRACTIONS
link: "/thirdmolarextractions/"
- name: IMPLANT SUPPORTED DENTISTRY
link:
- name: DENTURES
link:
- name: BASIC ORAL SURGERY
link:
---
{% for _page in site.pages %}
{% if _page.settings %}
{% assign settings = _page %}
{% endif %}
{% endfor %}
<!-- Services Section -->
<section class="bg-brand-primary-dark py-5" style="background-image: url(/assets/uploads/woodgrain-bg.jpg); background-size: cover">
<div class="container py-5">
<div class="d-flex justify-content-center">
<h1 class="display-4 border border-white p-4 mb-4">PROCEDURES</h1>
</div>
<div class="row justify-content-center">
<div class=" p-4 text-center">
<h2 class="text-center text-white mb-4">
At Forest Family Dentistry, it is our goal to provide the absolute best dental service at an affordable
price.
</h2>
<h3 class="text-center text-white">
We strive to give the families of North Austin and Allandale complete oral care under one roof. The American
Dental Association has provided a great resource for you and your family to learn about proper dental care
and check symptoms and treatment options. Check it out at <a href="https://mouthealthy.org" target="_blank"
rel="noopener">MouthHealthy.org</a>
</h3>
</div>
</div>
</div>
<div class="container-fluid p-4 p-md-5">
<div class="row justify-content-center">
{% for service in page.services %}
<div class="col-sm-6 col-md-4 col-lg-3 text-center mb-5">
<h4 class="text-center mb-3">{{service.name}}</h4>
{% if service.link != nil %}
<a href="{{service.link}}">
<button type="button" class="btn btn-outline-light rounded-0 bg-brand-primary-dark">
<h5 class="text-nowrap">Read More</h5>
</button>
</a>
{% endif %}
</div>
{% endfor %}
</div>
</div>
</section>