Skip to content

Latest commit

 

History

History
44 lines (41 loc) · 1.5 KB

giving-back.md

File metadata and controls

44 lines (41 loc) · 1.5 KB
layout title permalink tags
default
Meet Our Team
/giving-back/
Giving Back

{% for post in site.tags["Giving Back"] %}


  <ul class="post-list">
  •     <a href="{{post.url}}">
          {% if post.use_youtube_image == true %}
          <img src="https://img.youtube.com/vi/{{post.youtube_code | remove: 'https://youtu.be/' | remove: 'https://www.youtube.com/watch?v='}}/maxresdefault.jpg" alt="{{post.title}}" class="post-image" />
          {% else %}
            {% if post.youtube_alternate_image != null %}
              <img src="{{post.youtube_alternate_image}}" alt="{{post.title}}" class="post-image"/>
            {% else %}
              <img src="{{ site.data.settings.images.post_cover }}" alt="{{post.title}}" class="post-image"/>
            {% endif %}
          {% endif %}
        </a>
      </div>
    </div>
    <div class="col-lg-6">
      {{ post.excerpt | strip_html | prepend: "<p class='excerpt'>" | append: "</p>" | truncate: 160 }}
        <p class="readlink"><a href="{{post.url}}" class="readmore">Read More</a></p>
    </div>
    
  • {% endfor %}