-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-home.php
50 lines (45 loc) · 1.72 KB
/
page-home.php
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
<?php
/**
* Template Name: Home
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<div class="home-toc">
<div class="home-toc-item">
<div class="home-toc-icon">
<i class="fa fa-bone"></i>
</div>
<p>If you live on the island or abroad, we have plenty of dogs that need new homes.</p>
<ul>
<li><a href="<?php site_url(); ?>/adoptions/">View adoptions</a></li>
<li><a href="<?php site_url(); ?>/adoptions/">Before you adopt</a></li>
<li><a href="<?php site_url(); ?>/adoptions/">Adopting from outside of Spain</a></li>
</ul>
</div>
<div class="home-toc-item">
<div class="home-toc-icon">
<i class="fa fa-heart"></i>
</div>
<p>We are completely volunteer-powered and all donations go to the benefit of the welfare of the dogs.</p>
<ul>
<li><a href="<?php site_url(); ?>/donate/">Donate today</a></li>
<li><a href="<?php site_url(); ?>/donate/">Become a member</a></li>
<li><a href="<?php site_url(); ?>/donate/">Sponsor a dog</a></li>
</div>
<div class="home-toc-item">
<div class="home-toc-icon">
<i class="fa fa-people"></i>
</div>
<p>We're in need of volunteers for a number of tasks, see how you can help below:</p>
<ul>
<li><a href="<?php site_url(); ?>/volunteer/">Volunteer at the shelter</a></li>
<li><a href="<?php site_url(); ?>/adoptions/">Foster a dog at your home</a></li>
<li><a href="<?php site_url(); ?>/about-us/">Run a local business?</a></li>
<li><a href="<?php site_url(); ?>/volunteer/">Flying out of Fuerteventura?</a></li>
</div>
</div>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_footer();