forked from fzsun/BFL-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (55 loc) · 1.71 KB
/
index.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
{% extends "layout.html" %}
{% set title = "Home" %}
{% block hero%}
<section class="hero is-light is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title">
Biomass Feedstock Logistics
</h1>
<h2 class="subtitle">
Some introduction about team.
</h2>
<a class="button is-primary" href="/team/">View More</a>
</div>
<p class="has-text-info">(The frontend is currently using Bulma and jQuery)</p>
</div>
</section>
{% endblock %}
{% block content %}
<div class="columns">
<div class="column is-4">
<div class="card">
<div class="card-image">
<figure class="image is-3by2">
<img src="{{ url_for('static', filename='images/s-bfls.jpg')}}" alt="Placeholder image">
</figure>
</div>
<div class="card-content">
<p class="title">Sorghum BFLS</p>
<p>A decision support tool for optimal design of sorghum biomass feedstock supply chains.</p>
</div>
<div class="card-content is-bottom">
<a class="button is-primary is-fullwidth" href="/s-bfls/">View</a>
</div>
</div>
</div>
<div class="column is-4">
<div class="card">
<div class="card-image">
<figure class="image is-3by2">
<img src="{{ url_for('static', filename='images/tsp_map.jpg')}}" alt="Placeholder image">
</figure>
</div>
<div class="card-content">
<p class="title">TSP Example</p>
<p>A traveling salesman problem example.</p>
</div>
<div class="card-content is-bottom">
<a class="button is-primary is-fullwidth" href="/tsp/">View</a>
</div>
</div>
</div>
</div>
{% endblock %}
{% block myscript %}{% endblock %}