-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpage.developers.php
49 lines (49 loc) · 1.41 KB
/
page.developers.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
<?php namespace Habari; ?>
<?php $theme->display('header'); ?>
<div id="intro" class="subpage">
<div class="bg"></div>
<div class="container">
<h1><?php echo $post->info->headline; ?></h1>
<h2><?php echo $post->info->tagline; ?></h2>
</div>
</div>
<div id="involved" class="subpage">
<div class="container">
<div class="row">
<div class="area four columns">
<a href="<?php URL::out( 'display_document', array('slug' => 'theme') ); ?>">
<i class="icon-code">a</i>
<p><strong>Theme API</strong></p>
</a>
</div>
<div class="area four columns">
<a href="<?php URL::out( 'display_document', array('slug' => 'plugin') ); ?>">
<i class="icon-code">P</i>
<p><strong>Plugin API</strong></p>
</a>
</div>
<div class="area four columns">
<a href="<?php URL::out( 'display_document', array('slug' => 'ajax') ); ?>">
<i class="icon-code">A</i>
<p><strong>AJAX API</strong></p>
</a>
</div>
<div class="area four columns">
<a href="<?php URL::out( 'display_document', array('slug' => 'rest') ); ?>">
<i class="icon-code">r</i>
<p><strong>REST API</strong></p>
</a>
</div>
</div>
</div>
</div>
<div id="article">
<div class="container">
<div class="fourteen offset-by-one body columns omega">
<?php echo $post->content_out; ?>
</div>
</div>
</div>
<div id="ending">
<?php $theme->display('quicklinks'); ?>
<?php $theme->display('footer'); ?>