-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
executable file
·193 lines (162 loc) · 6 KB
/
home.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
<?php get_header(); ?>
<div class="s-container main-body <?php echo '-'.$GLOBALS['s_blog_layout']; ?>">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<br/> <br/>
<?php
query_posts('showposts=1&category_name=feature');
echo '<div class="s-grid -m1 -d1">';
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-caption-banner', $GLOBALS['s_blog_template']);
endwhile;
echo '</div>';
wp_reset_query();
?>
<h1>Featured</h1>
<?php
query_posts('showposts=5&category_name=feature');
echo '<div class="s-grid -m2 -d3 first-child-full-4">';
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-card', $GLOBALS['s_blog_template']);
endwhile;
echo '</div>';
wp_reset_query();
?>
<span class="social-media-lines">
<a href="https://facebook.com/spaceth"><i class="si-facebook-squared"></i></a>
<a href="https://twitter.com/spacethnews"><i class="si-twitter"></i></a>
<a href="https://instagram.com/spaceth.co"><i class="si-instagram"></i></a>
<a href="https://facebook.com/about"><i class="si-mail"></i></a>
</span>
<div class="section-separator">
<h1>In Coversation</h1>
<h4>เรื่องราวน่าสนใจที่กำลังเป็นบทสนทนา</h4>
</div>
<div class="home-widget-banner s-grid -m2 -d4">
<div class="widget-grid">
<?php dynamic_sidebar( 'inconversation1' ); ?>
</div>
<div class="widget-grid">
<?php dynamic_sidebar( 'inconversation2' ); ?>
</div>
<div class="widget-grid">
<?php dynamic_sidebar( 'inconversation3' ); ?>
</div>
<div class="widget-grid">
<?php dynamic_sidebar( 'inconversation4' ); ?>
</div>
</div>
<div class="section-separator">
<a href="https://spaceth.co/category/futurism">
<h1>Futurism</h1>
<h4>โลกอนาคต การใช้ชีวิตในอวกาศ และปลายทางของมนุษยชาติ</h4>
</a>
</div>
<?php
query_posts('showposts=6&category_name=futurism');
echo '<div class="s-grid -m1 -d3 first-child-full-2">';
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-card', $GLOBALS['s_blog_template']);
endwhile;
echo '</div>';
wp_reset_query();
?>
<div class="section-separator">
<a href="https://spaceth.co/category/podcast"><h1>Podcast</h1>
<h4>ฟังเรื่องราวอวกาศ วิทยาศาสตร์ ฟิสิกส์ และอนาคต</h4>
</a>
<br/>
<?php
query_posts('showposts=4&category_name=podcast');
echo '<div class="s-grid -m2 -d4">';
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-headline', $GLOBALS['s_blog_template']);
endwhile;
echo '</div>';
wp_reset_query();
?>
</div>
<div style="padding:20px 0;" class="section-separator">
<a href="https://spaceth.co/category/futurism">
<h1>Discover</h1>
</a>
</div>
<?php dynamic_sidebar( 'cloudtag' ); ?>
<div class="section-separator">
<a href="https://spaceth.co/category/interview">
<h1>Interviews</h1>
<h4>เรื่องราว บทสัมภาษณ์ บทสนทนา</h4>
</a>
</div>
<?php
query_posts('showposts=4&category_name=interview');
echo '<div class="s-grid -m1 -d3 first-child-full">';
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-card', $GLOBALS['s_blog_template']);
endwhile;
echo '</div>';
wp_reset_query();
?>
<div class="section-separator">
<a href="https://spaceth.co/category/science">
<h1>Science</h1>
<h4>วิทยาศาสตร์ ทฤษฎี และการค้นพบใหม่</h4>
</a>
</div>
<?php
query_posts('showposts=6&category_name=science');
echo '<div class="s-grid -m1 -d3 first-child-full-5">';
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-card', $GLOBALS['s_blog_template']);
endwhile;
echo '</div>';
wp_reset_query();
?>
<div class="section-separator">
<a href="https://spaceth.co/category/spacecraft">
<h1>Spacecraft</h1>
<h4>ยานอวกาศ การเดินทางสู่อวกาศ และการสำรวจใหม่</h4>
</a>
</div>
<?php
query_posts('showposts=6&category_name=spacecraft');
echo '<div class="s-grid -m1 -d3">';
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-card', $GLOBALS['s_blog_template']);
endwhile;
echo '</div>';
wp_reset_query();
?>
<div class="section-separator">
<a href="https://spaceth.co/category/arts">
<h1>Humanity</h1>
<h4>ศิลปะ วิทยาศาสตร์ และความเป็นมนุษย์</h4>
</a>
</div>
<?php
query_posts('showposts=6&category_name=arts');
echo '<div class="s-grid -m1 -d3 first-child-full-3">';
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-card', $GLOBALS['s_blog_template']);
endwhile;
echo '</div>';
wp_reset_query();
?>
<div class="section-separator">
<a href="https://spaceth.co/category/article">
<h1>Story</h1>
<h4>รวมเรื่องราวน่าสนใจหลากหลาย</h4>
</a>
</div>
<?php
query_posts('showposts=10&category_name=article');
echo '<div class="s-grid -m1 -d3 first-child-full-2">';
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-card', $GLOBALS['s_blog_template']);
endwhile;
echo '</div>';
wp_reset_query();
?>
</main>
</div>
<?php get_footer(); ?>