This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template name="##" value="{# $END$ #}" toReformat="false" toShortenFQNames="true"> | |
<context> | |
<option name="HTML_TEXT" value="true" /> | |
<option name="HTML" value="true" /> | |
<option name="Twig" value="true" /> | |
</context> | |
</template> | |
<template name="%%" value="{% $END$ %}" toReformat="false" toShortenFQNames="true"> | |
<context> | |
<option name="HTML_TEXT" value="true" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// When we give an element some ‘attention’. | |
@mixin attention() { | |
&:hover, | |
&:active, | |
&:focus { | |
@content; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# | |
Social Links Array | |
Examples: | |
{{ dh_macros.dh_socialLinks([ | |
'twitter', | |
'facebook', | |
'xing' | |
], true) }} | |
#} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<rss version="2.0"> | |
<channel> | |
<title>David Hellmann - Designer &amp; Developer</title> | |
<link>http://craft.davidhellmann.dev/</link> | |
<atom:link href="http://craft.davidhellmann.dev/feed/" rel="self" type="application/rss+xml" /> | |
<description>David is a self-taught Digital Art Director, Designer & Developer with over nine years work experience. Currently he is working for Red Bull in Salzburg.</description> | |
<language>en-us</language> | |
<pubDate>Sun, 26 Jun 2016 20:07:56 +0000</pubDate> | |
<lastBuildDate>Sun, 26 Jun 2016 20:07:56 +0000</lastBuildDate> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<rss version="2.0"> | |
<channel> | |
<title>David Hellmann - Designer &amp; Developer</title> | |
<link>https://davidhellmann.com/</link> | |
<atom:link href="https://davidhellmann.com/feed/" rel="self" type="application/rss+xml" /> | |
<description>David is a self-taught Digital Art Director, Designer & Developer with over nine years work experience. Currently he is working for Red Bull in Salzburg.</description> | |
<language>en-us</language> | |
<pubDate>Sun, 26 Jun 2016 20:12:44 +0000</pubDate> | |
<lastBuildDate>Sun, 26 Jun 2016 20:12:44 +0000</lastBuildDate> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<rss version="2.0"> | |
<channel> | |
<title>{{ seomaticSiteMeta.siteSeoName }}</title> | |
<link>{{ siteUrl }}</link> | |
<atom:link href="{{ craft.request.url }}" rel="self" type="application/rss+xml" /> | |
<description>{{ seomaticSiteMeta.siteSeoDescription }}</description> | |
<language>en-us</language> | |
<pubDate>{{ now.rss }}</pubDate> | |
<lastBuildDate>{{ now.rss }}</lastBuildDate> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Colours picked from https://robinpowered.com/blog/best-practice-system-for-organizing-and-tagging-github-issues/ | |
### | |
# Label definitions | |
### | |
declare -A LABELS | |
# Platform |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Colours picked from https://robinpowered.com/blog/best-practice-system-for-organizing-and-tagging-github-issues/ | |
### | |
# Label definitions | |
### | |
declare -A LABELS | |
# Platform |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends craft.request.isAjax ? 'layout/_ajaxLayout' : 'layout/_layout' %} | |
{% block content %} | |
{% set keywords = craft.request.getParam('query')|split('/') ?: false %} | |
{% set searchParam = keywords|join(' OR ') %} | |
{% set criteria = { | |
collections: ['bodies', 'entries'], | |
params: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% import '_macros/_macro-image.html' as macroImage %} | |
{{ macroImage.image(image, options = { | |
ratio: ratio | |
}) }} |
OlderNewer