forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsoftware.html
More file actions
38 lines (29 loc) · 1006 Bytes
/
Copy pathsoftware.html
File metadata and controls
38 lines (29 loc) · 1006 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
29
30
31
32
33
34
35
36
37
38
---
layout: default
title: Software
permalink: /software/
image: software_banner.jpeg
---
<div class="herobanner flex-wrapper flex-center" style="background-size: cover;background-image: url('{{ site.baseurl }}/images/{{ page.image }}');">
</div>
<div style="margin:0 12%;">
<div class="mposts">
<div class="secttitle"><h1><a href="{{ site.baseurl }}{{ post.url }}">Bioinformatics tools</a></h1></div>
{% for post in site.tools %}
<article class="mpost">
<div style="vertical-align: top">
<h1 style="width: 200px; margin-top: 0px">{{ post.package }}</h1>
<!-- <img class="mthumb" src="{{ site.baseurl }}/images/{{ post.image }}"/ alt="" > -->
</div>
<div class="mpost-sub" >
<!-- <h1>{{ post.package }}</h1> -->
{{ post.excerpt }}
<br>
{% for item in post.links %}
<a href="{{ item.url }}" class="read-more">{{ item.name }} </a>
{% endfor %}
</div>
</article>
{% endfor %}
</div>
</div>