forked from arfc/arfc.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (113 loc) · 5.79 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
---
layout: default
title: Advanced Reactors and Fuel Cycles
subtitle: University of Illinois at Urbana-Champaign
---
<!-- Page -->
<section id="code" class="{% cycle '', 'bg-light-gray' %}">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">{{ page.title }}</h2>
<h3 class="section-subheading text-muted">{{ page.subtitle }}</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<h3 class="section-subheading text-muted">
This group is led by Kathryn Huff, an Assistant Professor at the <a href="http://illinois.edu">University of Illinois at Urbana-Champaign</a> in the Department <a href="http://npre.illinois.edu">Nuclear, Plasma, and Radiological Engineering</a>. We design and conduct simulations to understand and improve the safety and sustainability of nuclear energy.
</h3>
</div>
</div>
</div>
<div class="container">
<div class="row">
{% for topic in site.data.topics %}
<div class="col-md-4 col-sm-4 portfolio-item">
<a href="{{ topic.url }}" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="{{ topic.pic }}" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>{{ topic.title }}</h4>
<br/>
<p class="text-muted">{{ topic.description }}</p>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
<!--- NEWS -->
<section id="news" class="{% cycle '', 'bg-light-gray' %}">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">News</h2>
<h3 class="section-subheading text-muted">Updates from the research group.</h3>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
{% for post in site.posts %}
<span class="post-meta"><h2>{{ post.date | date: "%b %-d, %Y" }}</h2></span>
<h3><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h3>
{% endfor %}
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>
</div>
</div>
</section>
<!--- LICENSE -->
<section id="license" class="{% cycle '', 'bg-light-gray' %}">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">License</h2>
<h3 class="section-subheading text-muted">This website and
all its contents are CC-BY-4.0 licensed.
So, you may share and adapt this material as long as
you give appropriate credit, provide a link to the
license, and indicate if changes were made. You may do
so in any reasonable manner, but not in any way that
suggests the licensor endorses you or your use.
</h3>
</div>
</div>
<div class="row">
<div class="text-center">
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Advanced Reactors and Fuel Cycles</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="https://arfc.github.io" property="cc:attributionName" rel="cc:attributionURL">ARFC Research Group</a> is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.<br />Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="https://github.com/arfc/arfc.github.io" rel="dct:source">github.com/arfc/arfc.github.io</a>.
</div>
</div>
</div>
</section>
<!--- Software
<section id="software" class="{% cycle '', 'bg-light-gray' %}">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Software</h2>
<h3 class="section-subheading text-muted">Simulation leverages the ubiquity of data, the efficiency of computation, and the purity of mathematics toward scientific discovery.</h3>
</div>
</div>
<div class="row">
<div class="col-md-6 text-right">
<p class="large text-muted">This group strives create reproducible, transparent, extendible research products.</p>
</div>
<div class="col-md-6">
<ul class="code">
<li>
<h4><i class="fa fa-{{ code.network }}"></i>
<a href="{{ code.url }}">{{code.name}}</a></h4>
<p>{{code.description}}</p>
</li>
</ul>
</div>
</div>
</div>
</section>
-->