wip
This commit is contained in:
parent
9212cdb015
commit
13a3c1c866
28 changed files with 154 additions and 204 deletions
|
@ -30,13 +30,13 @@
|
|||
<link rel="icon" href="{{ site.favicon.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
|
||||
{% endfor %}
|
||||
</head>
|
||||
<body class="text-grey-darkest text-sm leading-normal">
|
||||
<body class="text-black text-sm leading-normal">
|
||||
<div class="navbar border-bottom border-b border-grey-light mb-6" role="banner">
|
||||
<header class="container mx-auto px-4">
|
||||
<div class="md:flex">
|
||||
<div class="w-full md:w-1/3 lg:w-1/4 flex items-center">
|
||||
<div class="w-3/4 py-5">
|
||||
<a href="/" title="Home">
|
||||
<a href="/" title="Home" class="text-grey-darkest no-underline hover:underline">
|
||||
{{ site.title }}
|
||||
</a>
|
||||
</div>
|
||||
|
@ -116,7 +116,8 @@
|
|||
|
||||
<footer class="border-t border-grey-light pt-4 mt-4" role="contentinfo">
|
||||
<p>
|
||||
© 2010-{{ 'now'|date('Y') }} {{ site.title }}. Built with <a href="https://sculpin.io">Sculpin</a> and <a href="https://tailwindcss.com">Tailwind CSS</a>.
|
||||
© 2010-{{ 'now'|date('Y') }} {{ site.title }}.
|
||||
Built with <a class="link" href="https://sculpin.io">Sculpin</a> and <a class="link" href="https://tailwindcss.com">Tailwind CSS</a>.
|
||||
</p>
|
||||
|
||||
<div class="mt-2">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{% include 'post/header' %}
|
||||
{% include 'post/intro-image' %}
|
||||
|
||||
<div class="content mb-6">
|
||||
<div class="markdown mb-6">
|
||||
{% set limit = 'now'|date_modify('-12 months')|date('U') %}
|
||||
{% if page.date|date('U') < limit %}
|
||||
<div class="border-2 border-blue p-4 mb-4">
|
||||
|
@ -19,7 +19,10 @@
|
|||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
|
||||
{% include 'post/twitter-link' %}
|
||||
<div class="mb-4 italic text-grey-dark">
|
||||
<p>Questions? Comments? I’m <a href="https://twitter.com/{{ site.twitter.name }}" class="link">@{{ site.twitter.name }}</a> on Twitter.</p>
|
||||
</div>
|
||||
|
||||
{% include 'post/tags' %}
|
||||
{% include 'post/pager' %}
|
||||
{% include 'post/about-author' %}
|
||||
|
|
|
@ -2,8 +2,7 @@
|
|||
|
||||
{% block content_wrapper %}
|
||||
<div>
|
||||
<div>
|
||||
<h2>Abstract</h2>
|
||||
<div class="markdown">
|
||||
{{ page.summary|markdown }}
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue