Isotope Issues with Combination Filters and Hash State (solved) ('-' * 63)
Forked from Bud Parr's Pen Isotope Issues with Combination Filters and Hash State.
Place this in your head. | |
{% block head_extra %} | |
{% set prev = prevItem(item, 'publish_date', true) %} | |
{% set next = nextItem(item, 'publish_date', true) %} | |
{% if prev %} | |
<link rel="prefetch" href="{{ url(prev) }}" /> | |
{% endif %} | |
{% if next %} | |
<link rel="prefetch" href="{{ url(next) }}" /> | |
{% endif %} |
@for $i from 1 through 6 { | |
h#{$i} { | |
font-size: modular-scale((6 - $i), 1em, 1.2); | |
} | |
} | |
// via https://github.com/thoughtbot/bitters/issues/153#issuecomment-85744338 |
lib-cov | |
*.seed | |
*.log | |
*.csv | |
*.dat | |
*.out | |
*.pid | |
*.gz | |
.DS_Store | |
.sass-cache |
<a href="{{ url(object) }}">{{ object.name }}</a>{% if loop.revindex != 2 %}{% if not loop.last %}, {% endif %}{% endif %}{% if loop.revindex == 2 %} and {% endif %} |
User-Agent: * | |
Disallow:{% if getSetting('analytics_id') %} /cms/{% else %} /{% endif %} |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
// Simple, single configuration file to override almost all paths and server settings. As used by @airways | |
// and @litzinger. | |
// Only check in the default as dist.config.php, set your version control system to ignore config.php so that | |
// local users and each instance (staging, production) can have their own settings. | |
// These config files are mainly meant to be used on a shared development server used by all developers, | |
// although it works almost as well for local development as well. |
{% capture the_collection %}{{page.collection}}{% endcapture %} | |
{% if page.collection %} | |
{% assign document = site[the_collection] %} | |
{% endif %} | |
<h1>TITLE: {{ page.title }}</h1> | |
{% for links in document %} | |
{% if links.title == page.title %} | |
{% unless forloop.first %} | |
{% assign prevurl = prev.url %} | |
{% endunless %} |
--- | |
layout: default | |
--- | |
<div class="post"> | |
<header class="post-header"> | |
<h1 class="post-title">{{ page.title }}</h1> | |
</header> | |
<article class="post-content"> |
<!DOCTYPE html> | |
<html> | |
{% include head.html %} | |
<body> | |
{% include header.html %} | |
<div class="page-content"> |