forked from stijnvc/holo-alfa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathama.html
More file actions
32 lines (28 loc) · 1.31 KB
/
ama.html
File metadata and controls
32 lines (28 loc) · 1.31 KB
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
---
layout: page
title: Community Resources
---
<div class="columns">
<div class="column col-12 text-center my-16">
<h2 class="main-header">Community AMAs</h2>
<p>Twice each month, we host an experienced community builder in our community for a live Ask Me Anything (AMA) session with our members. These AMAs give you the chance to ask and interact with those who have been there, done that, and learn more about community building! Not yet in the community? Join below so you don't miss the next AMA.</p>
<a class="btn btn-lg btn-primary" href="/join">Join the Community</a>
<h4 class="mt-16 main-header">Past AMA Transcripts</h2>
<p>Missed an AMA? You can get the transcripts of all our past sessions below, lots of learning to be had!</p>
</div>
</div>
<div class="columns mb-32">
{% for post in site.posts offset: 0 %}
<div class="column col-4 col-sm-6 my-2">
<a href='{{ post.url }}' style="text-decoration: none;">
<div class="bg-gray p-8 text-center">
<div class="resource-header">
<img class="s-circle" style="max-width: 70%; margin-bottom: 5px;" src="/assets/ama/{{ post.profile }}.png"/>
<h5>{{ post.name }}</h5>
<p style="margin-bottom: 5px; height: 40px;">{{ post.job-title }}</p>
</div>
</div>
</a>
</div>
{% endfor %}
</div>