Skip to content

Instantly share code, notes, and snippets.

View ademers's full-sized avatar
🧡

Andrea ademers

🧡
View GitHub Profile
@ademers
ademers / statamic-addon-image-tags.html
Created November 10, 2012 22:56
Statamic: Add-on Image Tags
{{ image src="/url_path/to/image" dim="400x300" }}
<img src="{{ image_url }}" width={{ width }} height={{ height }} />
{{ /image }}
@ademers
ademers / html-anchor-tel.html
Created November 12, 2012 15:43
HTML: Anchor Tel
<a href="tel:+15145551234">+1 514 555-1234</a>
@ademers
ademers / robots.txt
Created November 13, 2012 18:17
Robots: Example
# Disallow all robots
User-agent: *
Disallow: /
# Allow all robots
User-agent: *
Disallow:
@ademers
ademers / vimeo-thumbnail-urls.html
Last active December 12, 2015 07:18
Vimeo thumbnail URLs
http://vimeo.com/api/v2/video/54348266.xml
<thumbnail_small>http://b.vimeocdn.com/ts/376/134/376134405_100.jpg</thumbnail_small>
<thumbnail_medium>http://b.vimeocdn.com/ts/376/134/376134405_200.jpg</thumbnail_medium>
<thumbnail_large>http://b.vimeocdn.com/ts/376/134/376134405_640.jpg</thumbnail_large>
@ademers
ademers / youtube-video-thumbnails.html
Created February 7, 2013 23:26
Youtube video thumbnails
http://img.youtube.com/vi/MoGcfZBh_o0/default.jpg
http://img.youtube.com/vi/MoGcfZBh_o0/hqdefault.jpg
http://img.youtube.com/vi/MoGcfZBh_o0/mqdefault.jpg
http://img.youtube.com/vi/MoGcfZBh_o0/maxresdefault.jpg
@ademers
ademers / craft-globals-loop.html
Created March 21, 2013 13:53
Craft: Loop through Globals
{% for field in myGlobalSet.fieldLayout.fields %}
<li>{{ attribute(myGlobalSet, field.field.handle) }}</li>
{% endfor %}
@ademers
ademers / gist:5445209
Last active December 16, 2015 13:59
EECMS Safecracker with RTE field
{exp:safecracker
channel="blog"
allow_comments="yes"
return="blog/URL_TITLE"
datepicker="no"
include_jquery="no"
error_handling="inline"
form_class="form-horizontal"
safecracker_head="yes"
author_only="yes"
@ademers
ademers / safecracker-rte-simplified.html
Created May 1, 2013 15:54
SafeCracker RTE Simplified
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Blog/publish</title>
<meta name="description" content="">
@ademers
ademers / statamic-transform-tag.html
Created July 7, 2013 17:18
Statamic: {{ transform }} tag
<p><img src="{{ transform src="{ image_file }" width="594" }}" alt="{{ title }}" width="594"></p>
@ademers
ademers / statamic-author-first-last-name.html
Created July 10, 2013 15:18
Statamic: Author First & Last Name
{{ member:profile member="{ author }" }}
{{ first_name }} {{ last_name }}
{{ /member:profile }}