Skip to content

Commit 2bed329

Browse files
authored
Merge pull request #70 from econ-ark/update-home-columns
Homepage columns now HARK, REMARK, Other + new content
2 parents df9a89a + c784897 commit 2bed329

File tree

2 files changed

+37
-22
lines changed

2 files changed

+37
-22
lines changed

_layouts/home.html

+23-21
Original file line numberDiff line numberDiff line change
@@ -18,43 +18,45 @@
1818

1919
<h1 class="visuallyhidden">Econ-ARK</h1>
2020

21-
<div class="ark-parts py-5">
21+
<div class="ark-parts px-5 py-5">
2222
<div class="container">
2323
<div class="row gx-5">
2424
<div class="part col-md-4 px-5 my-5">
25-
<h2 class="title">HARK</h2>
25+
<div class="title">
26+
<h2 class="heading">HARK</h2>
27+
<p class="resource">Toolkit</p>
28+
</div>
2629
<p class="subtitle">Heterogeneous Agents Resources and toolKit</p>
2730
<div class="desc">
28-
<p>HARK is a toolkit for simplifying and speeding up the development of solutions and estimation methods for
29-
new
30-
models.</p>
31-
<p>Econ-ARK has developed an open source repository of highly modular, easily interoperable code for solving,
32-
simulating, and estimating dynamic economic models with heterogeneous agents.</p>
31+
<p>Econ-ARK developed a highly modular & interoperable open source toolkit for simulating, estimating and solving dynamic economic models with heterogeneous agents</p>
3332
</div>
3433
<p class="link"><a href="https://docs.econ-ark.org/overview/introduction.html">Introduction to HARK</a></p>
3534
</div>
35+
3636
<div class="part col-md-4 px-5 my-5">
37-
<h2 class="title">DemARK</h2>
38-
<p class="subtitle">Demonstrations of tools, AgentTypes, and ModelClasses</p>
37+
<div class="title">
38+
<h2 class="heading">REMARK</h2>
39+
<p class="resource">Materials</p>
40+
</div>
41+
<p class="subtitle">R[eplications/eproductions] and Explorations Made using ARK</p>
3942
<div class="desc">
40-
<p>DemARK contains a collection of code demonstrations to give you a feeling for how the code works and what
41-
you
42-
can do with it.</p>
43-
<p>These demonstrations form a repository produced by Econ-ARK containing a series of Jupyter Notebooks for
44-
demonstrating how to use material in the Econ-ARK.</p>
43+
<p>A <a href="https://github.com/econ-ark/REMARK">REMARK</a> is an executable archive that reproduces its own results on any computer using <a href="https://en.wikipedia.org/wiki/Docker_software">docker</a></p>
4544
</div>
46-
<p class="link"><a href="https://github.com/econ-ark/DemARK">DemARK Repository</a></p>
45+
<p class="link"><a href="/materials/">REMARKs</a></p>
4746
</div>
47+
4848
<div class="part col-md-4 px-5 my-5">
49-
<h2 class="title">REMARK</h2>
50-
<p class="subtitle">R[eplications/eproductions] and Explorations Made using ARK</p>
49+
<div class="title">
50+
<h2 class="heading">OTHER</h2>
51+
<p class="resource">Teaching</p>
52+
</div>
53+
<p class="subtitle">Demonstrations of tools, AgentTypes, and ModelClasses</p>
5154
<div class="desc">
52-
<p>REMARKs are self-contained and complete projects that can be executed by anyone.</p>
53-
<p>They include Explorations using HARK to demonstrate modelling ideas, Replications of important results of
54-
published papers written using other tools, and Reproductions of all the code within a paper. </p>
55+
<p>View the complete collection of our tools, materials, demonstrations, tutorials, blogs, assignments, documentation, and teaching</p>
5556
</div>
56-
<p class="link"><a href="/materials/">Materials Library</a></p>
57+
<p class="link"><a href="https://github.com/econ-ark/DemARK">DemARK</a></p>
5758
</div>
59+
5860
</div>
5961
</div>
6062
</div>

assets/sass/_main.scss

+14-1
Original file line numberDiff line numberDiff line change
@@ -228,11 +228,24 @@ a.button {
228228
color: $ark-lightblue;
229229

230230
.title {
231+
display: flex;
232+
flex-direction: row;
233+
justify-content: space-between;
234+
align-items: flex-end;
231235
padding: 0 0 0.25rem 0;
232236
border-bottom-width: 2px;
233237
border-bottom-style: solid;
234238
border-color: inherit;
235239
margin: 0;
240+
.heading {
241+
margin: 0;
242+
padding: 0;
243+
line-height: 1
244+
}
245+
.resource {
246+
margin: 0;
247+
padding: 0;
248+
}
236249
}
237250

238251
.subtitle {
@@ -244,7 +257,7 @@ a.button {
244257
}
245258

246259
.desc {
247-
padding: 1.5rem 0;
260+
padding: 0 0;
248261
color: #898989;
249262
}
250263

0 commit comments

Comments
 (0)