-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
106 lines (81 loc) · 3.03 KB
/
contact.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php
/**
* Template Name: Contact Page
*
*
* @package WP-Bootstrap
* @subpackage Default_Theme
* @since WP-Bootstrap 0.5
*
* Last Revised: July 16, 2012
*/
get_header(); ?>
<div class="container">
<div class="span12">
<center>
<a href="#">
<img src="<?php bloginfo ( 'template_url' ) ?>/img/logo.png" class="logo">
</a>
<br>
<a href="http://www.facebook.com/pages/The-s-community-of-entertainment/303645796319228">
<img src="<?php bloginfo ( 'template_url' ) ?>/img/some/facebook.png" class="some">
</a>
<a href="http://twitter.com/thescommunity">
<img src="<?php bloginfo ( 'template_url' ) ?>/img/some/twitter.png" class="some">
</a>
</center>
</div>
</div>
<!--===========================Navbar=======================-->
<div class="navbar navbar-inverse navbar-relative-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
<?php
/** Loading WordPress Custom Menu **/
wp_nav_menu( array(
'menu' => 'main-menu',
'container_class' => 'nav-collapse',
'menu_class' => 'nav',
'fallback_cb' => '',
'menu_id' => 'main-menu',
'walker' => new Bootstrapwp_Walker_Nav_Menu()
) ); ?>
</div>
</div>
</div>
<!--===========================Navbar=======================-->
<div class="container">
<div class="marketing">
<div class="row">
<!--========SPACER======--><div class="span12">
<!--========SPACER======-->
<!--========SPACER======--></div>
</div><!--row-->
<!--========SPACER======--><div class="span12">
<!--========SPACER======-->
<!--========SPACER======--></div>
<!--======================bottom row======================-->
<div class="row">
<div class="span12">
<div class="span11 well">
<div class="span7 home-container">
<h2><?php the_title(); ?></h2>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div>
<?php get_sidebar('page'); ?>
</div>
</div><!--well-->
</div><!--span12-->
</div><!--row-->
<!--======================bottom row======================-->
</div><!-- /.marketing -->
</div>
<?php get_footer();?>