-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpage-techlash.php
70 lines (54 loc) · 3.31 KB
/
page-techlash.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
<?php get_header(); ?>
<div class="container">
<div class="row">
<div class="col-12">
<div class="display-4 fitted-title text-center p-3">
SIX minute brew
</div>
<div class="row">
<div id="page_techlash_description" class="col">
<p>Are you an innovator looking to showcase your tech or product to a diverse and enthusiastic audience?
Look no further than our Techlash Showdown at Barcamp! This session is all about giving participants the opportunity to present their latest and greatest tech or product innovations in a 6-minute time limit.
<p>This session is open to anyone who has a product they would like to demonstrate. Whether you're an entrepreneur, inventor, or hobbyist, this is your chance to showcase your innovation to an engaged and supportive audience.</p>
<p>Simply <a href="how-to-register">register</a> for Barcamp and <a href="add-a-session">submit a session</a> under the "Techlash" category.
There are a limited number of spots available, so sign up early to ensure your spot.</p>
<p>PS: These ideas will undergo a filtering process. Remember to put in your phone number in the right field while you adding your session, we might require some clarifications from you.</p>
</div>
</div>
<div class="row">
<h2 id="page_techlash_sessionheading" class="col">Techlash sessions for BCB 2025</h2>
</div>
<div id="page_techlash_post_parent" class="row">
<?php
$args = 'cat=2011';
query_posts($args);
if ( have_posts() ) :
while (have_posts()) : the_post();
?>
<div class="col-xs-12 col-sm-6 col-md-4 mb-3">
<div class="card shadow-sm session-card">
<div class="card-body text-center">
<p><?php echo '<a href="' . get_author_posts_url(get_the_author_meta('ID')) . '">' . get_avatar(get_the_author_meta('ID'), 64) . '</a>'; ?></p>
<p class="card-title"><?php echo '<a href="' . get_author_posts_url(get_the_author_meta('ID')) . '">' . get_the_author_meta('display_name') . '</a>'; ?></p>
<h4 class="card-text"><a href="<?php echo get_permalink(); ?>" title=""><?php echo get_the_title(); ?></a></h4>
<div class="mt-2">
<div class="mt-2">
<span class="card-meta"><?php echo attending_users_count(get_the_ID()) ?> attendees</span>,
<span class="card-meta"><?php comments_number('0', '1', '%');?> comments</span> </div>
</div>
</div>
</div>
</div>
<?php
endwhile;
else :
?>
<div class="col-12">Sorry no techlash session has been posted yet. <a href="<?php echo home_url() ?>/add-a-session">Showcase your project?</a></div>
<?php
endif;
?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>