forked from markconroy/contact.ie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
37 lines (34 loc) · 1.6 KB
/
index.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
<?php
/**
* Copyright (C) 2017 Mark Conroy
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* SUPPLEMENTARY RESTRICTION BY MARK CONROY, AUTHOR OF CURRENT WORK
* WHILST I AM MAKING THIS CODE FREELY AVAILABLE FOR USE, I AM RESTRICTING
* THE USE OF IT FOR ANY PURPOSES THAT MIGHT BE CONSIDERED 'ALT-RIGHT' OR
* 'FAR RIGHT'. TO BE CLEAR, YOU MAY NOT CREATE SOMETHING FROM THIS SOFTWARE
* THAT MAY BE USED TO SUPPORT OR PROMOTE RACISM, PREJUDICE, HATRED, FASCISM,
* ETC.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
?>
<?php $title = 'Contact.ie | Connecting You to Your Politicians'; ?>
<?php $description = 'Contact.ie is the easiest way to contact TDs and county councillors in Ireland.'; ?>
<?php include $_SERVER['DOCUMENT_ROOT'] . '/includes/head-n-header.php'; ?>
<main class="layout-contained padding">
<h1>Welcome to Contact.ie</h1>
<h2 class="leader">Here's what you can do here:</h2>
<?php include $_SERVER['DOCUMENT_ROOT'] . '/includes/nav-contacts.php'; ?>
</main>
<?php include $_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'; ?>