-
-
Notifications
You must be signed in to change notification settings - Fork 353
/
index.php
60 lines (56 loc) · 2.12 KB
/
index.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
<?php
get_header();
if (iro_opt('bulletin_board') == '1') {
$text = iro_opt('bulletin_text');
?>
<div class="notice" style="margin-top:60px">
<?php if (iro_opt('bulletin_board_icon', 'true')) : ?>
<div class="notice-icon"><?php esc_html_e('Notice', 'sakurairo'); ?></div>
<?php endif; ?>
<div class="notice-content">
<?php if (strlen($text) > 142) { ?>
<div class="scrolling-text"><?php echo esc_html($text); ?></div>
<?php } else { ?>
<?php echo esc_html($text); ?>
<?php } ?>
</div>
</div>
<?php
}
if (iro_opt('exhibition_area') == '1') {
$layout = iro_opt('exhibition_area_style') == 'left_and_right' ? 'feature_v2' : 'feature';
get_template_part('layouts/' . $layout);
}
?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<h1 class="main-title">
<i class="<?php echo esc_attr(iro_opt('post_area_icon', 'fa-regular fa-bookmark')); ?>" aria-hidden="true"></i>
<br>
<?php echo esc_html(iro_opt('post_area_title', '文章')); ?>
</h1>
<?php
if (have_posts()) :
if (is_home() && !is_front_page()) : ?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header>
<?php endif;
get_template_part('tpl/content', 'thumb');
else :
get_template_part('tpl/content', 'none');
endif;
?>
</main>
<?php if (iro_opt('pagenav_style') == 'ajax') { ?>
<div id="pagination"><?php next_posts_link(__(' Previous', 'sakurairo')); ?></div>
<div id="add_post"><span id="add_post_time" style="visibility: hidden;" title="<?php echo esc_attr(iro_opt('page_auto_load', '')); ?>"></span></div>
<?php } else { ?>
<nav class="navigator">
<?php previous_posts_link('<i class="fa-solid fa-angle-left"></i>'); ?><?php next_posts_link('<i class="fa-solid fa-angle-right"></i>'); ?>
</nav>
<?php } ?>
</div>
<?php
get_footer();
?>