-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
41 lines (35 loc) · 834 Bytes
/
index.php
File metadata and controls
41 lines (35 loc) · 834 Bytes
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
<?php require_once('couch/cms.php'); ?>
<cms:template title='Notice Board and Banner' />
<?php
include 'assets/framework/header.php';
?>
<section id="banner">
<img id="bannerLogo" src="/LyonsCopse/assets/img/bannerLogo.png" />
<div id="bannerText">
<h2>
<cms:editable name='bannerTitle' type='text'>
Lorem
</cms:editable>
</h2>
<p>
<cms:editable name="bannerSubTitle" type="text">
Ipsum
</cms:editable>
</p>
</div>
</section>
<section id="wrapper">
<section id="main">
<section id="title">
<p>Notice Board</p>
</section>
<section id="content">
<cms:editable name='main_content' type='richtext'>
<p>This is the body</p>
</cms:editable>
</section>
</section>
<?php
include 'assets/framework/footer.php';
?>
<?php COUCH::invoke(); ?>