-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib_art_full_width.php
executable file
·46 lines (40 loc) · 1.19 KB
/
lib_art_full_width.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
<?php
/*
Template Name: Library Article Full Width
*/
?>
<?php get_header(); ?>
<div role="main" class="main">
<div class="page_title">
<div class="wrapper">
<hgroup>
<h1>Library</h1>
<h2>Browse and search developer information</h2>
</hgroup>
</div>
</div><!--end page title-->
<div class="main_content cf">
<?php include_once "breadcrumbs.php"; ?>
<div class="wrapper cf container">
<div class="full_width">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="content_wrap cf">
<article class="cf">
<div class="full_width art_txt_area">
<hgroup>
<h2 class="beta"><?php the_title(); ?></h2>
<h3 class="delta"><?php the_field('sub_title'); ?></h3>
</hgroup>
<div class="art_txt">
<?php the_content(); ?>
</div>
<?php include_once "likes.php"; ?>
</div><!--end three quarters-->
</article>
</div><!--end content wrap-->
<?php endwhile; endif; ?>
</div><!--end full width-->
</div><!--end wrapper-->
</div><!--end main_content-->
</div><!-- end main -->
<?php get_footer(); ?>