forked from krogsgard/wporg-developer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-reference-landing.php
executable file
·64 lines (54 loc) · 2.05 KB
/
page-reference-landing.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
/**
* The template for displaying the Code Reference landing page.
*
* Template Name: Reference
*
* @package wporg-developer
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<div class="reference-landing">
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header><!-- .entry-header -->
<div class="search-guide section clear">
<h4 class="ref-intro"><?php _e( 'Want to know what's going on inside WordPress? Search the Code Reference for more information about WordPress' functions, hooks, and filters.', 'wporg' ); ?></h4>
<h3 class="search-intro"><?php _e( 'Try it out:', 'wporg' ); ?></h3>
<?php get_search_form(); ?>
</div><!-- /search-guide -->
<div class="topic-guide section">
<h4><?php _e( 'Or browse through topics:', 'wporg' ); ?></h4>
<ul class="unordered-list horizontal-list no-bullets">
<li><a href="#">Some topic</a></li>
<li><a href="#">Some other topic</a></li>
<li><a href="#">Another new topic</a></li>
</ul>
</div><!-- /topic-guide -->
<div class="new-in-guide section two-columns clear">
<div class="widget box gray">
<h3 class="widget-title"><?php _e( 'New in 3.5:', 'wporg' ); ?></h3>
<div class="widget-content">
<ul class="unordered-list no-bullets">
<li><a href="#">Some function</a></li>
<li><a href="#">Some other function</a></li>
<li><a href="#">Another new function</a></li>
</ul>
</div>
</div>
<div class="widget box gray">
<h3 class="widget-title"><?php _e( 'APIs', 'wporg' ); ?></h3>
<div class="widget-content">
<ul class="unordered-list no-bullets">
<li><a href="#">Some API</a></li>
<li><a href="#">Some other API</a></li>
<li><a href="#">Another new API</a></li>
</ul>
</div>
</div>
</div><!-- /new-in-guide -->
</div><!-- /reference-landing -->
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer(); ?>