-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.php
53 lines (53 loc) · 1.93 KB
/
resources.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
<?
/*
Template Name: Resources
*/
?>
<?php get_header(); ?>
<div id="main" class="container">
<div class="row">
<aside id="left_sidebar" class="threecol">
<section>
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('resources') ) : ?>
<?php endif; ?>
</section>
</aside>
<section id="main_content" class="ninecol last">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<header>
<h1>Resources</h1>
</header>
<article class="content">
<header>
<h2>Here are some things that can help you:</h2>
</header>
<ul>
<?php the_content(); ?>
</ul>
</article>
<?php endwhile; else: endif; ?>
<!--
<div class="container">
<div class="row">
<div class="sixcol">
<h3>Strategies for acquiring funding</h3>
<?php
$meta_values = get_post_meta($post->ID, 'Strategies on Acquiring Funding', true);
echo $meta_values;
?>
</div>
<div class="sixcol last">
<h3>Strategies on reaching out to others</h3>
<?php
$meta_values = get_post_meta($post->ID, 'Strategies on How to Reach Out to Others', true);
echo $meta_values;
?>
</div>
</div>
</div>
-->
</section>
</div>
</div>
<?php get_footer(); ?>