-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
100 lines (94 loc) · 3.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
---
layout: default
title: Home
section: Home
---
<div class="row" style="font-size: 130%" >
<div class="col-xs-12">
<h1>COPASI: Biochemical System Simulator</h1>
<p>
COPASI is a software application for simulation and analysis of biochemical networks and their dynamics.
</p>
<p>
COPASI is a stand-alone program that supports models in the SBML standard and can simulate their behavior using ODEs, SDEs, or Gillespie's stochastic simulation algorithm. Arbitrary discrete events can be included in such simulations. COPASI provides a set analysis methods and parameter estimation, a list of all features can be found <a href="{{ site.baseurl }}/Support/Features/">here</a>.
</p>
</div>
</div>
<div class="row hidden-lg hidden-md hidden-sm text-center">
<div class="col-sm-4">
<a href="{{ site.baseurl }}/Download/">
<img src="{{ site.baseurl }}/images/download.png" class="img-responsive" style="height: 200px; width: 200px; display: inline; padding: 5px;">
</a>
</div>
<div class="col-sm-4">
<a href="{{ site.baseurl }}/Support/">
<img src="{{ site.baseurl }}/images/support.png" class="img-responsive" style="height: 200px; width: 200px; display: inline; padding: 5px;">
</a>
</div>
<div class="col-sm-4">
<a href="{{ site.baseurl }}/Support/Features/">
<img src="{{ site.baseurl }}/images/features.png" class="img-responsive" style="height: 200px; width: 200px; display: inline; padding: 5px;">
</a>
</div>
</div>
<div class="row hidden-lg hidden-md hidden-xs text-center">
<div class="col-sm-4">
<a href="{{ site.baseurl }}/Download/">
<img src="{{ site.baseurl }}/images/download.png" class="img-responsive" style="height: 200px; width: 200px; display: inline; padding: 5px;">
</a>
</div>
<div class="col-sm-4">
<a href="{{ site.baseurl }}/Support/">
<img src="{{ site.baseurl }}/images/support.png" class="img-responsive" style="height: 200px; width: 200px; display: inline; padding: 5px;">
</a>
</div>
<div class="col-sm-4">
<a href="{{ site.baseurl }}/Support/Features/">
<img src="{{ site.baseurl }}/images/features.png" class="img-responsive" style="height: 200px; width: 200px; display: inline; padding: 5px;">
</a>
</div>
</div>
<div class="row hidden-xs hidden-sm text-center">
<div class="col-md-4">
<a href="{{ site.baseurl }}/Download/">
<img src="{{ site.baseurl }}/images/download.png" class="img-responsive" style="display: inline; padding: 5px;">
</a>
</div>
<div class="col-md-4">
<a href="{{ site.baseurl }}/Support/">
<img src="{{ site.baseurl }}/images/support.png" class="img-responsive" style="display: inline; padding: 5px;">
</a>
</div>
<div class="col-md-4">
<a href="{{ site.baseurl }}/Support/Features/">
<img src="{{ site.baseurl }}/images/features.png" class="img-responsive" style="display: inline; padding: 5px;">
</a>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<h4>Most recent News</h4>
{% for post in site.posts limit: 5 %}
<div class="panel panel-default">
<div class="panel-heading">
<div class="media">
<div class="media-left">
<a href="{{ site.baseurl }}{{ post.url }}">
<img class="media-object" width="48px;" heigth="48px;" src="{{ site.baseurl }}/images/post/{{ post.topic }}.png" alt="{{ post.topic }}">
</a>
</div>
<div class="media-body">
<h3 class="media-heading">{{ post.title }}</h3>
<p>{{ post.author }}: {{ post.date }}</p>
</div>
</div>
</div>
<div class="panel-body">
{{ post.excerpt }}
<a href="{{ site.baseurl }}{{ post.url }}"> read more </a>
</div>
</div>
{% endfor %}
<a href="{{ site.baseurl }}/News/" >All News</a>
</div>
</div>