-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpage-platform.php
198 lines (142 loc) · 4.66 KB
/
page-platform.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
<?php
/*
Template Name: Platform.
*/
get_header(); ?>
<div class="block-area">
<div class="banner-wrapper">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/i/platforms-1.jpg" class="col-main-banner">
</div>
<div class="inner-section-left-col">
<h1>Community development platform <a class="join-btn" href="#">Join</a></h1>
<p>Creative Commons is committed to copyright policy advocacy, and it makes sense that advocacy efforts rely on collaboration with the members of the Creative Commons Global Network.
<br>
<br>
See here for details – <a href="#">https://github.com/creativecommons/network-platforms/blob/master/copyright-reform.md</a></p>
<div class="secondary-left-col">
<h3>Members <span class="members-filter"><a href="#">Newest</a> | <a href="#">Active</a> | <a href="#">Chapter</a> | <a href="#">Alphabetical</a></span></h3>
<article>
<div class="avatar-container">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/i/avatar-1.png">
</div>
<div class="member-info">
<h4><a href="#">Nabakanta Panighrahi</a></h4>
<p class="member-country">Chile</p>
<p>Last updated: May 2017</p>
<p>Job: Machine Learning</p>
</div>
</article>
<article>
<div class="avatar-container">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/i/avatar-1.png">
</div>
<div class="member-info">
<h4><a href="#">Nabakanta Panighrahi</a></h4>
<p class="member-country">Chile</p>
<p>Last updated: May 2017</p>
<p>Job: Machine Learning</p>
</div>
</article>
<article>
<div class="avatar-container">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/i/avatar-1.png">
</div>
<div class="member-info">
<h4><a href="#">Nabakanta Panighrahi</a></h4>
<p class="member-country">Chile</p>
<p>Last updated: May 2017</p>
<p>Job: Machine Learning</p>
</div>
</article>
<article>
<div class="avatar-container">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/i/avatar-1.png">
</div>
<div class="member-info">
<h4><a href="#">Nabakanta Panighrahi</a></h4>
<p class="member-country">Chile</p>
<p>Last updated: May 2017</p>
<p>Job: Machine Learning</p>
</div>
</article>
<article>
<div class="avatar-container">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/i/avatar-1.png">
</div>
<div class="member-info">
<h4><a href="#">Nabakanta Panighrahi</a></h4>
<p class="member-country">Chile</p>
<p>Last updated: May 2017</p>
<p>Job: Machine Learning</p>
</div>
</article>
</div>
<div class="secondary-right-col">
<h3>Events on this platform</h3>
<article>
<div class="date-container">
<span class="event-date-day">13</span>
<span class="event-date-month">April</span>
</div>
<div class="member-info">
<h4><a href="#">CC Global summit</a></h4>
<p>Venue TBA</p>
</div>
</article>
<article>
<div class="date-container">
<span class="event-date-day">13</span>
<span class="event-date-month">April</span>
</div>
<div class="member-info">
<h4><a href="#">CC Global summit</a></h4>
<p>Venue TBA</p>
</div>
</article>
<article>
<div class="date-container">
<span class="event-date-day">13</span>
<span class="event-date-month">April</span>
</div>
<div class="member-info">
<h4><a href="#">CC Global summit</a></h4>
<p>Venue TBA</p>
</div>
</article>
<h3>Latest activity</h3>
<article>
<div class="avatar-container">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/i/avatar-1.png">
</div>
<div class="member-info">
<p><a href="#">Nabakanta Panighrahi</a> joined community development platform 23 days ago.</p>
</div>
</article>
<article>
<div class="avatar-container">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/i/avatar-1.png">
</div>
<div class="member-info">
<p><a href="#">Nabakanta Panighrahi</a> joined community development platform 23 days ago.</p>
</div>
</article>
</div>
</div>
<aside>
<img src="http://via.placeholder.com/1000x550">
</aside>
</div><!--/.block-area-->
<?php
if (have_posts()):
while (have_posts()):
the_post(); ?>
<?php the_content() ?>
<?php endwhile; ?>
<?php
else: // no posts found
?>
<p>No posts found matching your criteria.</p>
<?php
endif; // done checking for posts
?>
<?php get_footer(); ?>