File tree Expand file tree Collapse file tree 17 files changed +99
-25
lines changed Expand file tree Collapse file tree 17 files changed +99
-25
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
+ /**
3
+ * category archives template part
4
+ */
5
+
2
6
/**
3
7
* category archives template part
4
8
*
9
+ * @link http://codex.wordpress.org/Template_Hierarchy
5
10
* @package multiloquent\template_parts
6
11
*/
7
12
get_header ();
Original file line number Diff line number Diff line change 1
1
<?php
2
- /**
2
+ /**
3
+ * comment form
4
+ */
5
+
6
+ /**
3
7
* comment template part.
4
- * this is a direct lift of the comments from shoestrap;
8
+ * this is a direct lift of the comments from shoestrap;
5
9
* I personally use disqus for my comments, but this comment system was already done :D
6
10
* http://shoestrap.org/
7
- *
11
+ *
8
12
* @package multiloquent\template_parts
9
13
*/
10
14
if (post_password_required ()) {
18
22
<ol class="comment-list">
19
23
<?php wp_list_comments (); ?>
20
24
</ol>
21
-
25
+
22
26
<?php if (get_comment_pages_count () > 1 && get_option ('page_comments ' )) { ?>
23
27
<nav>
24
28
<ul class="pager">
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * template part to output a featured image
3
+ * output the featured image, or a default image if none set
4
+ */
5
+
6
+ /**
7
+ * template part to output a featured image or a default image if none set
4
8
*
5
9
* @package multiloquent\template_parts
6
10
*/
Original file line number Diff line number Diff line change 1
- <?php
1
+ <?php
2
+ /**
3
+ * multiloquent theme footer
4
+ */
5
+
2
6
/**
3
7
* footer template part
4
- *
8
+ *
5
9
* @package multiloquent\template_parts
6
10
*/
7
11
?>
Original file line number Diff line number Diff line change 1
1
<?php
2
+ /**
3
+ * template for static homepage if set in options
4
+ */
5
+
2
6
/**
3
7
* home page template part if static page selected as homepage
4
8
*
9
+ * @link http://codex.wordpress.org/Template_Hierarchy
10
+ *
5
11
* @package multiloquent\template_parts
6
12
*/
7
13
Original file line number Diff line number Diff line change 1
1
<?php
2
+ /**
3
+ * Header template part
4
+ */
5
+
2
6
/**
3
7
* header template part
4
- *
8
+ *
5
9
* @package multiloquent\template_parts
6
10
*/
7
11
?> <!DOCTYPE html>
21
25
<body <?php body_class ();?> >
22
26
<div class="holder">
23
27
<div class="wrapper">
24
-
28
+
Original file line number Diff line number Diff line change 1
1
<?php
2
+ /**
3
+ * homepage when set to display blog posts on homepage
4
+ */
5
+
2
6
/**
3
7
* this is the template for the home page when its set to display blog posts
4
8
*
9
+ * @link http://codex.wordpress.org/Template_Hierarchy
5
10
* @package multiloquent\template_parts
6
11
*/
7
12
Original file line number Diff line number Diff line change 1
1
<?php
2
+ /**
3
+ * fallback if no other archive pages are found
4
+ */
5
+
2
6
/**
3
7
* fallback page if no other index page found
4
- *
8
+ * @link http://codex.wordpress.org/Template_Hierarchy
5
9
* @package multiloquent\template_parts
6
10
*/
7
11
Original file line number Diff line number Diff line change 1
- <?php
1
+ <?php
2
+ /**
3
+ * generate metadata for posts
4
+ */
5
+
2
6
/**
3
7
* generate the metadata snippet.
4
8
* used in the breadcrumbs
5
- *
9
+ *
6
10
* @package multiloquent\template_parts
7
11
*/
8
12
Original file line number Diff line number Diff line change 1
- <?php
1
+ <?php
2
+ /**
3
+ * nav bar
4
+ */
5
+
2
6
/**
3
7
* navigation template part
4
- *
8
+ *
5
9
* @package multiloquent\template_parts
6
10
*/
7
11
?>
8
12
<nav role="navigation" class="navbar navbar-default navbar-fixed-top">
9
13
<div class="navbar-header">
10
- <a title="navigation menu" href="javascript:void(0);" class="navbar-brand sidebar-toggle"><span class="fa fa-bars"></span></a>
11
- <?php echo '<h2><a class="navbar-brand title_text" title=" ' . get_bloginfo ('name ' ).'" href=" ' . esc_url (home_url ('/ ' )) .'"> ' . get_bloginfo ('name ' ).'</a></h2> ' ;?>
14
+ <a title="navigation menu" href="javascript:void(0);" class="navbar-brand sidebar-toggle"><span class="fa fa-bars"></span></a>
15
+ <?php echo '<h2><a class="navbar-brand title_text" title=" ' . get_bloginfo ('name ' ).'" href=" ' . esc_url (home_url ('/ ' )) .'"> ' . get_bloginfo ('name ' ).'</a></h2> ' ;?>
12
16
</div>
13
17
</nav>
You can’t perform that action at this time.
0 commit comments