-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
EC2 Default User
committed
Sep 23, 2022
1 parent
bebc736
commit 6f22edb
Showing
26 changed files
with
1,129 additions
and
1,002 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,9 @@ <h2 class="text-black mt-0 text-center">Contactarnos!</h2> | |
O envíanos un correo electrónico:<br> | ||
<b class="text-black">Fccan Correo Electrónico: </b> <a href = "mailto: [email protected]">[email protected]</a> <br> | ||
{% for member in site.staff %} | ||
<b class="text-black">{{member.title}} - {{member.name}}</b> <a href = "mailto: {{member.email}}">{{member.email}}</a> <br> | ||
{% if member.email %} | ||
<b class="text-black">{{member.title-es}} - {{member.name}}</b> <a href = "mailto: {{member.email}}">{{member.email}}</a> <br> | ||
{% endif %} | ||
{% endfor %} | ||
|
||
</div> | ||
|
@@ -31,7 +33,9 @@ <h2 class="text-black mt-0 text-center">Contact Us!</h2> | |
Or Email Us:<br> | ||
<b class="text-black">Fccan Community Contact: </b> <a href = "mailto: [email protected]">[email protected]</a> <br> | ||
{% for member in site.staff %} | ||
<b class="text-black">{{member.title}} - {{member.name}}</b> <a href = "mailto: {{member.email}}">{{member.email}}</a> <br> | ||
{% if member.email != '' %} | ||
<b class="text-black">{{member.title-en}} - {{member.name}}</b> <a href = "mailto: {{member.email}}">{{member.email}}</a> <br> | ||
{% endif %} | ||
{% endfor %} | ||
|
||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,37 @@ | ||
{% for post in site.blog reversed %} | ||
{% if page.url contains "blog" %} | ||
{% if post.associated-group contains "blog" %} | ||
<a href="{{ post.url }}" class="nav-link js-scroll-trigger"><li class="dropdown-item nav-link">{{ post.title }}</li></a> | ||
{% endif %} | ||
{% elsif page.url contains "affiliate" %} | ||
{{page.url}} | ||
{% elsif page.url contains "programs" %} | ||
{{page.url}} | ||
{% endif %} | ||
{% endfor %} | ||
<section> | ||
<div class="container"> | ||
<div class="row-fluid"> | ||
<div class="card-body"> | ||
<h3> {% if page.lang == "es" %}Último Blog {% else %}Latest Blog{% endif %} </h3> | ||
{% assign blog = site.blog | where:"associated-group","blog" | sort: 'date' | reverse %} | ||
{% for post in blog limit:3 %} | ||
<a href="{{ post.url }}"> | ||
<li class="nav-link"><h5>{{ post.title }} - {{post.date| date: "%-d %B %Y" }}</h5> | ||
<p>{{ post.content |strip_html |truncatewords:20}}</p>Read more... | ||
</li> | ||
</a> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section> | ||
<div class="container"> | ||
<div class="row-fluid"> | ||
<div class="card-body"> | ||
<h3> {% if page.lang == "es" %}Blogs Archivados {% else %}Archived Blogs{% endif %} </h3> | ||
{% assign blog = site.blog | where:"associated-group","blog" | sort: 'date' | reverse %} | ||
{% for post in blog offset:4 %} | ||
|
||
<a href="{{ post.url }}"> | ||
<li class="nav-link"><h5>{{ post.title }} - {{post.date| date: "%-d %B %Y" }}</h5> | ||
</li> | ||
</a> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.