-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
74 lines (66 loc) · 2.13 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
---
layout: default
description: >-
The Open Free Energy initiative is dedicated to the development of
**open-source** tools for **binding free energy** calculations to guide
pharmaceutical **drug design and discovery**.
bullets:
- image:
src: assets/images/main/code-image.jpg
alt: "Code from Open Free Energy, in a terminal"
text: >-
## OPEN SOURCE
Our software is [developed in public on
GitHub](https://github.com/OpenFreeEnergy) and is released under the permissive
MIT license.
- image:
src: assets/images/main/p381aa.png
alt: "Ligand in the binding pocket of a protein"
text: >-
## BINDING FREE ENERGY
We develop tools that enable our users to easily and efficiently
calculate binding free energies for networks of molecular systems.
- image:
src: assets/images/main/drugDesign1_free.png
alt: "Network of ligand transformations"
text: >-
## DRUG DESIGN AND DISCOVERY
Our tools are designed with pharmaceutical lead optimization in mind,
and we work closely with our board members in industry to develop
tools that meet the needs of real-world users.
bottom: >-
## Open Free Energy is hosted by the [Open Molecular Software
Foundation](https://omsf.io).
---
<section class="hero">
<div class="text-container">
<h1>{{ page.title }}</h1>
<p class="subtext">{{ page.description | markdownify }}</p>
<div class="cta button alt">
<a href="http://try.openfree.energy">Try It Online</a>
</div>
{% if page.hero %}
<div>
<img src="{{ page.hero.src }}" alt="{{ page.hero.alt }}" />
</div>
{% endif %}
</div>
</section>
<div class="content">
{% for bullet in page.bullets %}
<section>
<div class="container flex">
<div class="text">
{{ bullet.text | markdownify }}
</div>
<div class="image">
<img class="main-page-bullet" src="{{ bullet.image.src }}" alt="{{ bullet.image.alt }}" />
</div>
</div>
</section>
{% endfor %}
{% if page.bottom %}
<section class="bottom-cta">
{{ page.bottom | markdownify }}
</section>
{% endif %}