-
Notifications
You must be signed in to change notification settings - Fork 4
/
portfolio.html
80 lines (73 loc) · 3.11 KB
/
portfolio.html
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
71
72
73
74
75
76
77
78
79
---
title: Fellowship Portfolio
layout: sub
permalink: "/fellowship/portfolio"
redirect_from:
- "/portfolio"
---
<div class="container">
<ul class="breadcrumb">
<li><a href="/"><i class="icon-home6"></i>Home</a></li>
<li><a href="{{ site.data.routes.fellowship }}"><i class="icon-home6"></i>Fellowship</a></li>
<li class="active">Portfolio</li>
</ul>
</div>
<p><a class="lgx-btn" href="{{ site.data.routes.fellowship-apply }}">Apply Now</a></p>
<!-- <p><a class="lgx-btn" href="{{ site.data.routes.mentors }}">Mentors</a></p> -->
<p><a class="lgx-btn" href="{{ site.data.routes.fellowship-perks }}">Perks</a></p>
<!--PORTFOLIO-->
<section>
<div id="lgx-portfolio" class="lgx-portfolio">
<div class="lgx-inner">
<div class="container">
{% assign teams = site.fellowship_portfolio | sort: "date" | reverse %}
{% for team in teams %}
{% assign check = forloop.index | modulo: 3 %}
{% if check == 1 or forloop.index == 1 %}
<div class="row">
{% endif %}
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="lgx-single-team"> <!--lgx-team-circle-->
<figure>
<span class="vert-align-helper"></span>
<img
{% if team.logo %}
src="{{ team.logo }}"
{% else %}
src="/images/teamalpha/placeholder-wall.jpg"
{% endif %}
alt="{{ team.name }} logo"
/>
<figcaption>
<h3 class="team-name">
<a href="{% if team.website %}{{ team.website }}{% else %}#{% endif %}">{{ team.company }}</a>
<span class="pull-right">{{ team.date | date: "%Y" }}</span>
</h3>
<div class="text">
{{ team.content }}
</div>
<div class="team-bottom">
<ul class="list-inline social-group">
{% if team.facebook %}<li><a href="{{ team.facebook }}"><i class="fa fa-facebook-f" aria-hidden="true"></i></a></li>{% endif %}
{% if team.linkedin %}<li><a href="{{ team.linkedin }}"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>{% endif %}
</ul>
{% if team.website %}
<a class="link" href="{{ team.website }}"><i class="fa fa-long-arrow-right" aria-hidden="true"></i></a>
{% endif %}
</div>
</figcaption>
</figure>
</div>
</div>
{% if forloop.last == true or check == 0 and forloop.index != 1 %}
</div><!-- .ROW -->
{% endif %}
{% endfor %}
</div><!-- .CONTAINER -->
</div><!-- .INNER -->
</div>
</section>
<!--PORTFOLIO END-->
<p><a class="lgx-btn" href="{{ site.data.routes.fellowship-apply }}">Apply Now</a></p>
<!-- <p><a class="lgx-btn" href="{{ site.data.routes.mentors }}">Mentors</a></p> -->
<p><a class="lgx-btn" href="{{ site.data.routes.fellowship-perks }}">Perks</a></p>