-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathventures.html
More file actions
28 lines (25 loc) · 827 Bytes
/
ventures.html
File metadata and controls
28 lines (25 loc) · 827 Bytes
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
---
layout: base
title: Ventures
---
<head>
<link rel="stylesheet" href="/assets/css/ventures.css">
</head>
<div class="container-fluid venture-container">
<h1>Ventures</h1>
<div class="venture-titles">
{% for ven in site.data.ventures %}
<div>
<div>
<h4>{{ ven.name }} | Founded: {{ ven.date_founded }}</h4>
<p class="venture-desc">{{ ven.desc }}</p>
<p>{{ ven.body }}</p>
{% if ven.proj_link %}
<p>For product information, see <a href="../projects#{{ ven.proj_link | url_encode }}">{{ ven.proj_link }}</a></p>
{% endif %}
</div>
<hr style="height:2px;border-width:0;color:#8e8d8b; background-color:gray">
</div>
{% endfor %}
</div>
</div>