-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.main.php
505 lines (466 loc) · 26.4 KB
/
index.main.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
<?php
/**
* This is the main/default page template for the "bootstrap_blog" skin.
*
* This skin only uses one single template which includes most of its features.
* It will also rely on default includes for specific dispays (like the comment form).
*
* For a quick explanation of b2evo 2.0 skins, please start here:
* {@link http://b2evolution.net/man/skin-development-primer}
*
* The main page template is used to display the blog when no specific page template is available
* to handle the request (based on $disp).
*
* @package evoskins
* @subpackage bootstrap_blog
*/
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
if( version_compare( $app_version, '6.4' ) < 0 )
{ // Older skins (versions 2.x and above) should work on newer b2evo versions, but newer skins may not work on older b2evo versions.
die( 'This skin is designed for b2evolution 6.4 and above. Please <a href="http://b2evolution.net/downloads/index.html">upgrade your b2evolution</a>.' );
}
// This is the main template; it may be used to display very different things.
// Do inits depending on current $disp:
skin_init($disp);
// -------------------------- HTML HEADER INCLUDED HERE --------------------------
skin_include( '_html_header.inc.php', array() );
// -------------------------------- END OF HEADER --------------------------------
// ---------------------------- SITE HEADER INCLUDED HERE ----------------------------
// If site headers are enabled, they will be included here:
siteskin_include('_site_body_header.inc.php');
// ------------------------------- END OF SITE HEADER --------------------------------
?>
<div class="main">
<div class="container">
<div class="masterhead">
<header class="row">
<div class="coll-xs-12 col-sm-12 col-md-8">
<div class="evo_container evo_container__header">
<?php
// ------------------------- "Header" CONTAINER EMBEDDED HERE --------------------------
// Display container and contents:
skin_container(NT_('Header'), array(
// The following params will be used as defaults for widgets included in this container:
'block_start' => '<div class="evo_widget $wi_class$">',
'block_end' => '</div>',
'block_title_start' => '<h1>',
'block_title_end' => '</h1>',
));
// ----------------------------- END OF "Header" CONTAINER -----------------------------
?>
</div>
</div>
<div class="coll-xs-12 coll-sm-12 col-md-4">
<div class="evo_container evo_container__page_top">
<?php
// ------------------------- "Page Top" CONTAINER EMBEDDED HERE --------------------------
// Display container and contents:
skin_container(NT_('Page Top'), array(
// The following params will be used as defaults for widgets included in this container:
'block_start' => '<div class="evo_widget $wi_class$">',
'block_end' => '</div>',
'block_display_title' => false,
'list_start' => '<ul>',
'list_end' => '</ul>',
'item_start' => '<li>',
'item_end' => '</li>',
));
// ----------------------------- END OF "Page Top" CONTAINER -----------------------------
?>
</div>
</div>
</header>
</div>
<nav class="row">
<div class="col-md-12">
<ul class="nav color-hover circle-svg-a evo_container evo_container__menu">
<?php
// ------------------------- "Menu" CONTAINER EMBEDDED HERE --------------------------
// Display container and contents:
// Note: this container is designed to be a single <ul> list
skin_container(NT_('Menu'), array(
// The following params will be used as defaults for widgets included in this container:
'block_start' => '',
'block_end' => '',
'block_display_title' => false,
'list_start' => '',
'list_end' => '',
'item_start' => '<li class="evo_widget $wi_class$">',
'item_end' => '</li>',
'item_selected_start' => '<li class="active evo_widget $wi_class$">',
'item_selected_end' => '</li>',
'item_title_before' => '',
'item_title_after' => '',
));
// ----------------------------- END OF "Menu" CONTAINER -----------------------------
?>
</ul>
</div>
</nav>
<!-- =================================== START OF MAIN AREA =================================== -->
<div class="row">
<div class="content evo_content_block <?php
echo ( $Skin->get_setting('layout') == 'single_column' ? 'col-md-12' : 'col-md-9' );
echo ( $Skin->get_setting('layout') == 'left_sidebar' ? ' pull-right' : '' );
?>">
<?php
if (!in_array($disp, array('login', 'lostpassword', 'register', 'activateinfo', 'access_requires_login'))) { // Don't display the messages here because they are displayed inside wrapper to have the same width as form
// ------------------------- MESSAGES GENERATED FROM ACTIONS -------------------------
messages(array(
'block_start' => '<div class="action_messages">',
'block_end' => '</div>',
));
// --------------------------------- END OF MESSAGES ---------------------------------
}
?>
<?php
// ------------------- PREV/NEXT POST LINKS (SINGLE POST MODE) -------------------
item_prevnext_links( array(
'block_start' => '<nav><ul class="pager">',
'prev_start' => '<li class="previous">',
'prev_end' => '</li>',
'next_start' => '<li class="next">',
'next_end' => '</li>',
'block_end' => '</ul></nav>',
) );
// ------------------------- END OF PREV/NEXT POST LINKS -------------------------
?>
<?php
// ------------------------ TITLE FOR THE CURRENT REQUEST ------------------------
request_title(array(
'title_before' => '<h2 class="title">',
'title_after' => '</h2>',
'title_none' => '',
'glue' => ' - ',
'title_single_disp' => true,
'title_page_disp' => false,
'format' => 'htmlbody',
'register_text' => '',
'login_text' => '',
'lostpassword_text' => '',
'account_activation' => '',
'msgform_text' => '',
'user_text' => '',
'users_text' => '',
));
// ----------------------------- END OF REQUEST TITLE ----------------------------
?>
<?php
// Go Grab the featured post:
if( $Item = & get_featured_Item() )
{ // We have a featured/intro post to display:
// ---------------------- ITEM BLOCK INCLUDED HERE ------------------------
skin_include( '_item_block.inc.php', array(
'feature_block' => true,
'content_mode' => 'full', // We want regular "full" content, even in category browsing: i-e no excerpt or thumbnail
'intro_mode' => 'normal', // Intro posts will be displayed in normal mode
'item_class' => 'featured_post',
) );
// ----------------------------END ITEM BLOCK ----------------------------
}
?>
<?php
if ($disp != 'front' && $disp != 'download' && $disp != 'search') {
// -------------------- PREV/NEXT PAGE LINKS (POST LIST MODE) --------------------
mainlist_page_links(array(
'block_start' => '<div class="center"><ul class="pagination">',
'block_end' => '</ul></div>',
'page_current_template' => '<span class="current">$page_num$</span>',
'page_item_before' => '<li>',
'page_item_after' => '</li>','page_item_current_before' => '<li class="active">',
'page_item_current_after' => '</li>',
'prev_text' => '<i class="fa fa-angle-left"></i>',
'next_text' => '<i class="fa fa-angle-right"></i>',
));
// ------------------------- END OF PREV/NEXT PAGE LINKS -------------------------
?>
<?php
// --------------------------------- START OF POSTS -------------------------------------
// Display message if no post:
display_if_empty();
while ($Item = & mainlist_get_item()) { // For each blog post, do everything below up to the closing curly brace "}"
// ---------------------- ITEM BLOCK INCLUDED HERE ------------------------
skin_include('_item_block.inc.php', array(
'content_mode' => 'auto', // 'auto' will auto select depending on $disp-detail
));
// ----------------------------END ITEM BLOCK ----------------------------
} // ---------------------------------- END OF POSTS ------------------------------------
?>
<?php
// -------------------- PREV/NEXT PAGE LINKS (POST LIST MODE) --------------------
mainlist_page_links(array(
'block_start' => '<div class="center"><ul class="pagination">',
'block_end' => '</ul></div>',
'page_current_template' => '<span class="current">$page_num$</span>',
'page_item_before' => '<li>',
'page_item_after' => '</li>','page_item_current_before' => '<li class="active">',
'page_item_current_after' => '</li>',
'prev_text' => '<i class="fa fa-angle-left"></i>',
'next_text' => '<i class="fa fa-angle-right"></i>',
));
// ------------------------- END OF PREV/NEXT PAGE LINKS -------------------------
}
?>
<?php
// -------------- MAIN CONTENT TEMPLATE INCLUDED HERE (Based on $disp) --------------
skin_include('$disp$', array(
'disp_posts' => '', // We already handled this case above
'disp_single' => '', // We already handled this case above
'disp_page' => '', // We already handled this case above
'disp_front' => '_front.disp.php',
'author_link_text' => 'preferredname',
// Profile tabs to switch between user edit forms
'profile_tabs' => array(
'block_start' => '<nav><ul class="nav nav-tabs profile_tabs">',
'item_start' => '<li>',
'item_end' => '</li>',
'item_selected_start' => '<li class="active">',
'item_selected_end' => '</li>',
'block_end' => '</ul></nav>',
),
// Pagination
'pagination' => array(
'block_start' => '<div class="center"><ul class="pagination">',
'block_end' => '</ul></div>',
'page_current_template' => '<span><b>$page_num$</b></span>',
'page_item_before' => '<li>',
'page_item_after' => '</li>','page_item_current_before' => '<li class="active">',
'page_item_current_after' => '</li>',
'prev_text' => '<i class="fa fa-angle-left"></i>',
'next_text' => '<i class="fa fa-angle-right"></i>',
),
// Form params for the forms below: login, register, lostpassword, activateinfo and msgform
'skin_form_before' => '<div class="panel panel-default skin-form">'
. '<div class="panel-heading">'
. '<h3 class="panel-title">$form_title$</h3>'
. '</div>'
. '<div class="panel-body">',
'skin_form_after' => '</div></div>',
// Login
'display_form_messages' => true,
'form_title_login' => T_('Log in to your account') . '$form_links$',
'form_title_lostpass' => get_request_title() . '$form_links$',
'lostpass_page_class' => 'evo_panel__lostpass',
'login_form_inskin' => false,
'login_page_class' => 'evo_panel__login',
'login_page_before' => '<div class="$form_class$">',
'login_page_after' => '</div>',
'display_reg_link' => true,
'abort_link_position' => 'form_title',
'abort_link_text' => '<button type="button" class="close" aria-label="Close"><span aria-hidden="true">×</span></button>',
// Register
'register_page_before' => '<div class="evo_panel__register">',
'register_page_after' => '</div>',
'register_form_title' => T_('Register'),
'register_links_attrs' => '',
'register_use_placeholders' => true,
'register_field_width' => 252,
'register_disabled_page_before' => '<div class="evo_panel__register register-disabled">',
'register_disabled_page_after' => '</div>',
// Activate form
'activate_form_title' => T_('Account activation'),
'activate_page_before' => '<div class="evo_panel__activation">',
'activate_page_after' => '</div>',
// Search
'search_input_before' => '<div class="input-group">',
'search_input_after' => '',
'search_submit_before' => '<span class="input-group-btn">',
'search_submit_after' => '</span></div>',
// Comment template
'comment_start' => '<div class="evo_comment panel panel-default">',
'comment_end' => '</div>',
'comment_post_before' => '<span class="panel-title in-response">',
'comment_post_after' => '</span>',
'comment_title_before' => '<div class="panel-heading">',
'comment_title_after' => '<div class="clearfix"></div></div><div class="panel-body">',
'comment_avatar_before' => '<div class="evo_comment_avatar">',
'comment_avatar_after' => '</div>',
'comment_rating_before' => '<div class="evo_comment_rating">',
'comment_rating_after' => '</div>',
'comment_text_before' => '<div class="evo_comment_text">',
'comment_text_after' => '</div>',
'comment_info_before' => '<div class="evo_comment_footer clear text-muted"><small>',
'comment_info_after' => '</small></div></div>',
'comment_attach_info' => get_icon('help', 'imgtag', array(
'data-toggle' => 'tooltip',
'data-placement' => 'bottom',
'data-html' => 'true',
'title' => htmlspecialchars(get_upload_restriction(array(
'block_after' => '',
'block_separator' => '<br /><br />')))
)),
// Front page
'featured_intro_before' => '<div class="jumbotron">',
'featured_intro_after' => '</div>',
// Form "Sending a message"
'msgform_form_title' => T_('Sending a message'),
));
// Note: you can customize any of the sub templates included here by
// copying the matching php file into your skin directory.
// ------------------------- END OF MAIN CONTENT TEMPLATE ---------------------------
?>
</div>
<!-- =================================== START OF SIDEBAR =================================== -->
<?php
if ($Skin->get_setting('layout') != 'single_column') {
?>
<aside class="col-md-3<?php echo ( $Skin->get_setting( 'layout' ) == 'left_sidebar' ? ' pull-left' : '' ); ?>">
<div class="content panel-group evo_container evo_container__sidebar">
<?php
// ------------------------- "Sidebar" CONTAINER EMBEDDED HERE --------------------------
// Display container contents:
skin_container(NT_('Sidebar'), array(
// The following (optional) params will be used as defaults for widgets included in this container:
// This will enclose each widget in a block:
'block_start' => '<div class="panel panel-default evo_widget $wi_class$">',
'block_end' => '</div>',
// This will enclose the title of each widget:
'block_title_start' => '<div class="panel-heading circle-svg-a">'
. '<a onClick="return false;" class="panel-toggle" data-toggle="collapse" data-target=".pcollapse-0" href="#">'
. '<span class="panel-icon"><i class="fa fa-angle-down"></i></span></a>'
. '<span class="panel-title">',
'block_title_end' => '</span></div>',
// This will enclose the body of each widget:
'block_body_start' => '<div class="panel-collapse"><div class="panel-body">',
'block_body_end' => '</div></div>',
// If a widget displays a list, this will enclose that list:
'list_start' => '<ul>',
'list_end' => '</ul>',
// This will enclose each item in a list:
'item_start' => '<li>',
'item_end' => '</li>',
// This will enclose sub-lists in a list:
'group_start' => '<ul>',
'group_end' => '</ul>',
// This will enclose (foot)notes:
'notes_start' => '<div class="notes">',
'notes_end' => '</div>',
// Widget 'Search form':
'search_class' => 'compact_search_form',
'search_input_before' => '<div class="input-group">',
'search_input_after' => '',
'search_submit_before' => '<span class="input-group-btn">',
'search_submit_after' => '</span></div>',
));
// ----------------------------- END OF "Sidebar" CONTAINER -----------------------------
?>
</div>
<div class="content panel-group evo_container evo_container__sidebar2">
<?php
// ------------------------- "Sidebar" CONTAINER EMBEDDED HERE --------------------------
// Display container contents:
skin_container(NT_('Sidebar 2'), array(
// The following (optional) params will be used as defaults for widgets included in this container:
// This will enclose each widget in a block:
'block_start' => '<div class="panel panel-default evo_widget $wi_class$">',
'block_end' => '</div>',
// This will enclose the title of each widget:
'block_title_start' => '<div class="panel-heading circle-svg-a">'
. '<a onClick="return false;" class="panel-toggle" data-toggle="collapse" data-target=".pcollapse-0" href="#">'
. '<span class="panel-icon"><i class="fa fa-angle-down"></i></span></a>'
. '<span class="panel-title">',
'block_title_end' => '</span></div>',
// This will enclose the body of each widget:
'block_body_start' => '<div class="panel-collapse"><div class="panel-body">',
'block_body_end' => '</div></div>',
// If a widget displays a list, this will enclose that list:
'list_start' => '<ul>',
'list_end' => '</ul>',
// This will enclose each item in a list:
'item_start' => '<li>',
'item_end' => '</li>',
// This will enclose sub-lists in a list:
'group_start' => '<ul>',
'group_end' => '</ul>',
// This will enclose (foot)notes:
'notes_start' => '<div class="notes">',
'notes_end' => '</div>',
// Widget 'Search form':
'search_class' => 'compact_search_form',
'search_input_before' => '<div class="input-group">',
'search_input_after' => '',
'search_submit_before' => '<span class="input-group-btn">',
'search_submit_after' => '</span></div>',
));
// ----------------------------- END OF "Sidebar" CONTAINER -----------------------------
?>
</div>
</aside><!-- .col -->
<?php } ?>
</div><!-- .row -->
<footer class="row">
<!-- =================================== START OF FOOTER =================================== -->
<div class="col-md-12 center content">
<div class="evo_container evo_container__footer">
<?php
// Display container and contents:
skin_container( NT_("Footer"), array(
// The following params will be used as defaults for widgets included in this container:
'block_start' => '<div class="evo_widget $wi_class$">',
'block_end' => '</div>',
) );
// Note: Double quotes have been used around "Footer" only for test purposes.
?>
</div>
<p class="footer_paragraph">
<?php
// Display footer text (text can be edited in Blog Settings):
$Blog->footer_text( array(
'before' => '',
'after' => ' • ',
) );
?>
<?php
// Display a link to contact the owner of this blog (if owner accepts messages):
$Blog->contact_link(array(
'before' => '',
'after' => ' • ',
'text' => T_('Contact'),
'title' => T_('Send a message to the owner of this blog...'),
));
// Display a link to help page:
$Blog->help_link(array(
'before' => ' ',
'after' => ' ',
'text' => T_('Help'),
));
?>
<?php
// Display additional credits:
// If you can add your own credits without removing the defaults, you'll be very cool :))
// Please leave this at the bottom of the page to make sure your blog gets listed on b2evolution.net
credits(array(
'list_start' => '•',
'list_end' => ' ',
'separator' => '•',
'item_start' => ' ',
'item_end' => ' ',
));
?>
</p>
<?php
// Please help us promote b2evolution and leave this logo on your blog:
powered_by(array(
'block_start' => '<div class="powered_by">',
'block_end' => '</div>',
// Check /rsc/img/ for other possible images -- Don't forget to change or remove width & height too
'img_url' => '$rsc$img/powered-by-b2evolution-120t.gif',
'img_width' => 120,
'img_height' => 32,
));
?>
</div>
</footer>
</div> <!-- .container -->
</div> <!-- .main -->
<?php
// ---------------------------- SITE FOOTER INCLUDED HERE ----------------------------
// If site footers are enabled, they will be included here:
siteskin_include('_site_body_footer.inc.php');
// ------------------------------- END OF SITE FOOTER --------------------------------
// ------------------------- HTML FOOTER INCLUDED HERE --------------------------
skin_include('_html_footer.inc.php');
// Note: You can customize the default HTML footer by copying the
// _html_footer.inc.php file into the current skin folder.
// ------------------------------- END OF FOOTER --------------------------------
?>