Skip to content

Commit eb9bb89

Browse files
Merge pull request #1 from wfcommons/better_front_page
Improvements to the front page of the WfCommons site
2 parents 2981c3e + c205b8b commit eb9bb89

File tree

8 files changed

+511
-162
lines changed

8 files changed

+511
-162
lines changed

Gemfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@ group :jekyll_plugins do
1111
end
1212

1313
gem "webrick", "~> 1.7"
14-
gem "ffi", "1.16.3"
14+
gem "ffi", "1.16.3"
15+
gem "csv"
16+
gem "base64"
17+
gem "bigdecimal"

_includes/header.html

Lines changed: 21 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -3,91 +3,47 @@
33
<div class="row clearfix">
44
<div class="col-1">
55

6-
<!--Logo-->
76
<div id="logo">
8-
9-
<!--Logo that is shown on the banner-->
10-
<img src="images/wfcommons-horizontal.png" id="banner-logo" alt="Landing Page" />
11-
<!--End of Banner Logo-->
12-
13-
<!--The Logo that is shown on the sticky Navigation Bar-->
14-
<img src="images/wfcommons-horizontal.png" id="navigation-logo" alt="Landing Page" />
15-
<!--End of Navigation Logo-->
16-
7+
<img width="100%" src="images/wfcommons-horizontal.png" id="banner-logo" alt="Landing Page" />
8+
<img width="100%" src="images/wfcommons-horizontal.png" id="navigation-logo" alt="Landing Page" />
179
</div>
18-
<!--End of Logo-->
1910

20-
<!--Main Navigation-->
2111
<nav id="nav-main">
2212
<ul>
23-
<li>
24-
<a href="#banner">Home</a>
25-
</li>
26-
<li>
27-
<a href="#framework">Framework</a>
28-
</li>
29-
<li>
30-
<a href="#publications">Publications</a>
31-
</li>
32-
<li>
33-
<a href="#usage">They Use WfCommons</a>
34-
</li>
13+
<li> <a href="#banner">Home</a> </li>
14+
<li> <a href="#datasets">Datasets</a> </li>
15+
<li> <a href="#framework">Framework</a> </li>
16+
<li> <a href="#publications">Publications</a> </li>
17+
<li> <a href="#usage">They Use WfCommons</a> </li>
3518
<li>
3619
<a href="https://github.com/wfcommons/wfcommons" target="_blank" style="font-size: 1.25em"
3720
title="GitHub">
3821
<i class="fa fa-github"></i>
3922
</a>
4023
</li>
41-
<!-- <li>
42-
<a href="#testimonials">Testimonials</a>
43-
</li>
44-
<li>
45-
<a href="#clients">Clients</a>
46-
</li>
47-
<li>
48-
<a href="#pricing">Pricing</a>
49-
</li> -->
5024
</ul>
5125
</nav>
52-
<!--End of Main Navigation-->
5326

5427
<div id="nav-trigger"><span></span></div>
5528
<nav id="nav-mobile"></nav>
56-
5729
</div>
5830
</div>
59-
</div><!--End of Header-->
60-
61-
<!--Banner Content-->
62-
<div id="banner-content" class="row clearfix">
63-
64-
<div class="col-38">
31+
</div>
6532

33+
<div id="banner-content" class="row clearfix" style="padding-top: 10em;">
34+
<div class="col-3">
6635
<div class="section-heading">
67-
<h1 style="text-transform: uppercase; font-size: 2.4em; line-height: 1.2em;">Empowering scientific
68-
workflow research</h1>
69-
<h2>Harnessing open-source methods for scientific workflow analysis, recipe derivation, synthetic
70-
instance generation, and benchmark specification</h2>
36+
<h1 style="text-transform: uppercase; font-size: 2em; line-height: 1.2em;">Fostering <strong>scientific
37+
workflow research and development</strong></h1>
38+
<h2>WfCommons provides open-source datasets of scientific workflow instances and tools for exploring
39+
these datasets, for generating synthetic workflow instance, and for producing executable workflow
40+
benchmarks. The end-goal is to enable the development of new techniques and runtime systems for the
41+
efficient execution of scientific workflows on complex distributed infrastructures.</h2>
7142
</div>
72-
73-
<a href="https://docs.wfcommons.org" target="_blank" class="button">DOCUMENTATION</a>&nbsp;&nbsp;
74-
<a href="https://github.com/wfcommons/wfinstances" target="_blank" class="button"><span style="color: #999">WF</span>INSTANCES</a>&nbsp;&nbsp;
75-
<div>
76-
<a href="https://badge.fury.io/py/wfcommons" target="_blank">
77-
<img src="https://badge.fury.io/py/wfcommons.svg" />
78-
</a>&nbsp;&nbsp;
79-
<a href="https://pepy.tech/project/wfcommons" target="_blank">
80-
<img
81-
src="https://static.pepy.tech/personalized-badge/wfcommons?period=total&units=international_system&left_color=grey&right_color=yellow&left_text=Downloads" />
82-
</a>&nbsp;&nbsp;
83-
<a href="https://github.com/wfcommons/wfcommons/blob/master/LICENSE" target="_blank"
84-
style="border-bottom: 0">
85-
<img src="https://img.shields.io/badge/License-LGPL%20v3-blue.svg" />
86-
</a>
87-
</div>
88-
8943
</div>
44+
<div class="col-2-3">
45+
{% include wfcommons-concept-clickable.svg %}
46+
</div>
47+
</div>
9048

91-
</div><!--End of Row-->
92-
</header>
93-
49+
</header>

0 commit comments

Comments
 (0)