Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Promoting REMARK 'App Library' onto homepage… #68

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
178 changes: 97 additions & 81 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -1,134 +1,150 @@
<!doctype html>
<html class="no-js" lang="en">
<head>

<script async src="https://www.googletagmanager.com/gtag/js?id=UA-54984338-5"></script>
<script>
<head>

<script async src="https://www.googletagmanager.com/gtag/js?id=UA-54984338-5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());

gtag('config', '{{ site.google_analytics }}');
</script>
</script>

<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>{{ page.title }} &ndash; {{ site.title }}</title>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>{{ page.title }} &ndash; {{ site.title }}</title>

<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="icon" href="{{ '/assets/img/favicon.ico' | relative_url }}" type="image/x-icon" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="icon" href="{{ '/assets/img/favicon.ico' | relative_url }}" type="image/x-icon" /> -->

<meta name="author" content="{{ site.author }}">
<meta name="keywords" content="{{ site.keywords }}">
<meta name="description" content="{{ site.description }}">
<meta name="author" content="{{ site.author }}">
<meta name="keywords" content="{{ site.keywords }}">
<meta name="description" content="{{ site.description }}">

<meta property="og:title" content="{{ page.title }}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://econ-ark.org{{ page.url }}" />
<meta property="og:image" content="https://econ-ark.org/assets/img/econ-ark-logo.png" />
<meta property="og:description" content="{{ site.description }}" />
<meta property="og:site_name" content="{{ site.title }}" />
<meta property="og:title" content="{{ page.title }}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://econ-ark.org{{ page.url }}" />
<meta property="og:image" content="https://econ-ark.org/assets/img/econ-ark-logo.png" />
<meta property="og:description" content="{{ site.description }}" />
<meta property="og:site_name" content="{{ site.title }}" />

<script src="https://kit.fontawesome.com/8281de4b75.js" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/8281de4b75.js" crossorigin="anonymous"></script>

<link href="//fonts.googleapis.com/css?family=Varela+Round|Roboto:400,500,700&display=swap" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Varela+Round|Roboto:400,500,700&display=swap" rel="stylesheet">

<!-- Include CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/choices.js/public/assets/styles/choices.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="/assets/main.css?v=1.1">

</head>
<body class="language-python{% if page.layout == 'home' %} home{% endif %}">
<!-- Include CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/choices.js/public/assets/styles/choices.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="/assets/main.css?v=1.1">

<header class="header">
</head>

<a title="Toggle navigation" id="toggleNav" class="toggle-nav"><i class="fas fa-bars"></i></a>
<body class="language-python{% if page.layout == 'home' %} home{% endif %}">

<div class="container">
<header class="header">

<p class="site-logo"><a href="/"><img src="{{ '/assets/img/econ-ark-logo-white.png' | relative_url }}"></a></p>
<a title="Toggle navigation" id="toggleNav" class="toggle-nav"><i class="fas fa-bars"></i></a>

<nav class="navigation">
<div class="container">

<ul>
{% assign pages = site.pages | where: "menu_item", "true" | sort:"order" %}
{% for node in pages %}
<li class="{% if page.url == node.url %}active{% endif %}"><a href="{{ node.url | relative_url }}">{{ node.title }}</a></li>
{% endfor %}
<p class="site-logo"><a href="/"><img src="{{ '/assets/img/econ-ark-logo-white.png' | relative_url }}"></a>
</p>

<li><a href="https://docs.econ-ark.org">Docs</a></li>
<li><a href="https://github.com/econ-ark">GitHub</a></li>
</ul>
<nav class="navigation">

</nav>
<ul>
<li class="active"><a href="">Home</a></li>
<li class=""><a href="https://docs.econ-ark.org/overview/introduction.html">HARK</a></li>
<li class=""><a href="/materials/">App Library</a></li>
<li class=""><a href="/materials/">Teaching</a></li>
<li><a href="https://docs.econ-ark.org">Docs</a></li>
<li><a href="https://github.com/econ-ark">GitHub</a></li>
</ul>

</div>
</nav>

</header>
</div>

<main>
</header>

{% if page.layout != "home" %}
<div class="container">
{% endif %}
<main>

{{ content }}
{% if page.layout != "home" %}
<div class="container">
{% endif %}

{% if page.layout != "home" %}
</div>
{% endif %}
{{ content }}

</main>
{% if page.layout != "home" %}
</div>
{% endif %}

<footer class="footer px-5">
</main>

<div class="container">
<footer class="footer px-5">

<div class="row gx-5">
<div class="container">

<div class="col-md-7">
<div class="row gx-5">

<p>Econ-ARK is headed by <a href="http://www.econ2.jhu.edu/people/ccarroll/">Christopher D. Carroll</a>, Professor of Economics at the Johns Hopkins University.</p>
<div class="col-md-7">

<p>The project is a recipient of grants from the <a href="https://sloan.org/">Sloan foundation</a> and the <a href="https://www.thinkforwardinitiative.com/">Think Forward Initiative</a>, and is under the umbrella of projects with fiscal sponsorship by <a href="https://www.numfocus.org/">NumFocus</a>.</p>

<p>Please remember to <a href="acknowledging">acknowledge and cite</a> the use of Econ-ARK.</p>

<p>We are very grateful for any <a href="https://numfocus.salsalabs.org/donate-to-econ-ark/">donations</a> towards the Econ-ARK project.</p>
<p>Econ-ARK is headed by <a href="http://www.econ2.jhu.edu/people/ccarroll/">Christopher D.
Carroll</a>, Professor of Economics at the Johns Hopkins University.</p>

</div>
<p>The project is a recipient of grants from the <a href="https://sloan.org/">Sloan foundation</a>
and the <a href="https://www.thinkforwardinitiative.com/">Think Forward Initiative</a>, and is
under the umbrella of projects with fiscal sponsorship by <a
href="https://www.numfocus.org/">NumFocus</a>.</p>

<div class="offset-md-1 col-md-3">
<p>Please remember to <a href="acknowledging">acknowledge and cite</a> the use of Econ-ARK.</p>

<p class="sponsor"><a href="https://www.numfocus.org/"><img src="{{ '/assets/img/numfocus.png' | relative_url }}" alt="NumFOCUS logo" class="responsive"></a></p>

</div>
<p>We are very grateful for any <a
href="https://numfocus.salsalabs.org/donate-to-econ-ark/">donations</a> towards the Econ-ARK
project.</p>

</div>

<div class="row">
<div class="offset-md-1 col-md-3">

<p>&copy; 2023 &ndash; <a href="https://econ-ark.org/">Econ-ARK</a>. Hosted with <a href="https://pages.github.com/">GitHub Pages</a>.</p>
<p class="sponsor"><a href="https://www.numfocus.org/"><img
src="{{ '/assets/img/numfocus.png' | relative_url }}" alt="NumFOCUS logo"
class="responsive"></a></p>

</div>

</div>

</footer>
<div class="row">

<p>&copy; 2023 &ndash; <a href="https://econ-ark.org/">Econ-ARK</a>. Hosted with <a
href="https://pages.github.com/">GitHub Pages</a>.</p>

</div>

</div>

</footer>

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>

<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.js"></script>
<!-- Include Choices JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/choices.js/public/assets/scripts/choices.min.js"></script>

<!-- Include Choices JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/choices.js/public/assets/scripts/choices.min.js"></script>
<script src="{{ '/assets/js/prism.js' | relative_url }}"></script>
<script src="/assets/js/main.js?v=1.0"></script>

<script src="{{ '/assets/js/prism.js' | relative_url }}"></script>
<script src="/assets/js/main.js?v=1.0"></script>
</body>

</body>
</html>
</html>
Loading