-
Notifications
You must be signed in to change notification settings - Fork 1
/
workflows.html
89 lines (79 loc) · 5.04 KB
/
workflows.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>FEZ Workflows</title>
<link rel="shortcut icon" href="assets/media/favicon.jpeg" type="image/x-icon">
<meta name="description" content="A virtual hub to share finite element analysis workflows for biomechanics research">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- START: Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<a class="navbar-brand" href="index.html"><img src="./assets/media/FEZLogoHeatMap-300dpi.png" alt="" height="36px"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="aboutus.html">About</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="workflows.html">Workflows</a>
</li>
<li class="nav-item">
<a class="nav-link" href="mailto:[email protected]?">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- END: Navigation Bar -->
<!-- START: Workflow intro text -->
<div class="container mt-3 pt-3 pb-3">
<h1>FEZ GitHub Organization Workflows</h1>
<p>Our goal is to enable anyone, regardless of institution, to be able to learn FEA or to try out techniques and software (for example freeware alternatives. We created a Github organisation for biomechanists to share their FEA workflows and code. <br> Interested in contributing? Find out more below.</p>
<a href="https://github.com/FEZ-Finite-Element-Zurich" target="_blank" class="btn btn-outline-primary m-3"> FEZ GitHub Organization</a>
<a href="https://github.com/FEZ-Finite-Element-Zurich/FEZ-Main-Info" target="_blank" class="btn btn-outline-primary m-3">How to contribute</a>
<p class="m-3">To create a community of FEA biomechanists across institutions and career stages, we created a Slack community. This is a space for discussing ideas, software troubleshooting, sharing papers, and forming collaborations.</p>
<a href="https://finiteelementzurich.slack.com/join/shared_invite/zt-lx6ns6fb-_YBEaCm_tuOz_UfZzNRiwg#/" target="_blank" class="btn btn-outline-primary m-3"><i class="fab fa-fw fa-slack"></i> Join us on Slack!</a>
</div>
<!-- END: Workflow intro text -->
<!-- START: Listed Workflows - This part is targeted by the main.js script-->
<div class="container">
<div class="container d-flex equal flex-row flex-wrap justify-content-around" id="results">
</div>
</div>
<!-- END: Listed Workflows -->
<!-- Calls the main.js script that interacts with the GH API to get the workflow info and fills in the Workflows Section -->
<script src="assets/js/main.js"></script>
<!-- START: Footer -->
<div class="footer">
<div class="footer-links">
<a href="https://github.com/FEZ-Finite-Element-Zurich"><i class="fab fa-github"></i></a>
<a href="https://finiteelementzurich.slack.com/join/shared_invite/zt-lx6ns6fb-_YBEaCm_tuOz_UfZzNRiwg#/"><i class="fab fa-fw fa-slack"></i></a>
<a href="mailto:[email protected]?"><i class="fas fa-envelope"></i></a>
</div>
<div class="footer-links">
<ul style="list-style-type:none;text-align:left;">
<li>Report a problem or suggest an improvement by<u>
<a href="https://github.com/FEZ-Finite-Element-Zurich/fez-finite-element-zurich.github.io/issues">opening an issue</a></u>on our GitHub repository</li>
<li>
This website content is licensed
<u><a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY SA 4.0</a></u>
</li>
</ul>
</div>
</div>
<!-- END: Footer -->
<!-- BELOW: JS scripts needed for Bootstrap -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>