Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Updates Component to Communities #480

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions communities/ai-blogs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: with-grid
title: Updates
---

# AI Community Updates

{% assign filtered_posts = site.posts | where: 'initiative', "AI" %}
{% for post in filtered_posts%}
{% include article-head.html show_post_excerpt = true %}
{% endfor %}

<button onclick="btt()" id="btt"></button>

For all press inquiries, please contact [press@gsa.gov](mailto:press@gsa.gov)
12 changes: 12 additions & 0 deletions communities/ai.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,18 @@ <h2 id="cop-join">Join the AI CoP!</h2>

<a href="mailto:AI-subscribe-request@listserv.gsa.gov" class="usa-button">Join by Email</a>

<h2 id="coe-updates">Latest Updates</h2>
{% assign filtered_posts = site.posts | where: 'initiative', "AI" %}
{% assign i = 0 %}
{% for post in filtered_posts limit:3%}
{% assign i = i | plus: 1 %}
{% include article-head.html show_post_excerpt = true %}
{% endfor %}
{% if i == 3 %}
<a href="{{site.baseurl}}/communities/ai-blogs" class="usa-button">See All</a>
{% endif %}


</div> <!-- /.usa-width-two-thirds -->


Expand Down
15 changes: 15 additions & 0 deletions communities/cc-blogs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: with-grid
title: Updates
---

# Contact Center Community Updates

{% assign filtered_posts = site.posts | where: 'initiative', "CC" %}
{% for post in filtered_posts%}
{% include article-head.html show_post_excerpt = true %}
{% endfor %}

<button onclick="btt()" id="btt"></button>

For all press inquiries, please contact [press@gsa.gov](mailto:press@gsa.gov)
11 changes: 11 additions & 0 deletions communities/contact-center.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,17 @@ <h2 id="cop-join">Join Us!</h2>
<p><strong>Note:</strong> Federal, state, local, and tribal government employees only are eligible to join.</p>

<a href="mailto:G3C-subscribe-request@listserv.gsa.gov" class="usa-button">Join by Email</a>

<h2 id="coe-updates">Latest Updates</h2>
{% assign filtered_posts = site.posts | where: 'initiative', "CC" %}
{% assign i = 0 %}
{% for post in filtered_posts limit:3%}
{% assign i = i | plus: 1 %}
{% include article-head.html show_post_excerpt = true %}
{% endfor %}
{% if i == 3 %}
<a href="{{site.baseurl}}/communities/cc-blogs" class="usa-button">See All</a>
{% endif %}

</div> <!-- /.usa-width-two-thirds -->

Expand Down
15 changes: 15 additions & 0 deletions communities/ia-blogs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: with-grid
title: Updates
---

# Innovation Adoption Community Updates

{% assign filtered_posts = site.posts | where: 'initiative', "IA" %}
{% for post in filtered_posts%}
{% include article-head.html show_post_excerpt = true %}
{% endfor %}

<button onclick="btt()" id="btt"></button>

For all press inquiries, please contact [press@gsa.gov](mailto:press@gsa.gov)
13 changes: 13 additions & 0 deletions communities/innovation-adoption.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,19 @@ <h2 id="cop-join">Join Us!</h2>
<p><strong>Note:</strong> Federal government employees only are eligible to join. </p>

<a href="mailto:INNOVATION-ADOPTION-subscribe-request@listserv.gsa.gov" class="usa-button">Join by Email</a>

<h2 id="coe-updates">Latest Updates</h2>
{% assign filtered_posts = site.posts | where: 'initiative', "IA" %}
{% assign i = 0 %}
{% for post in filtered_posts limit:3%}
{% assign i = i | plus: 1 %}
{% include article-head.html show_post_excerpt = true %}
{% endfor %}
{% if i == 3 %}
<a href="{{site.baseurl}}/communities/ia-blogs" class="usa-button">See All</a>
{% endif %}



</div> <!-- /.usa-width-two-thirds -->

Expand Down