- Taken
- Unknown
- Bourne Identity (and the rest of Matts)
- Ronin
- Old Boy (original)
- Hostel (fair bit of action for a horror)
- Eagle Eye
- The Transporter (the sequels aren't as good)
- I am Legend
- Inception
View head.html
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
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feeds/rss"> | |
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> | |
<meta name="generator" content="CMS name"> | |
<!-- Open graph meta --> | |
<meta property="og:type" content="website"> | |
<meta property="og:site_name" content="Website title"> |
View film-list.md
View mods.css
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
body { | |
background-color: #333; | |
color: #B8B8B8; | |
text-align: center; | |
} | |
h2 { | |
font-weight: 500; | |
} |
View dabblet.html
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
<!DOCTYPE html> | |
<style> | |
body, html { | |
height: 100%; | |
overflow: hidden; | |
margin: 0; | |
padding: 0; | |
background: black; | |
} |
View parallax-scrolling.js
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
// Parallax header content | |
window.onscroll = function emParallax() { | |
if(window.pageYOffset>1) { | |
document.getElementById("parallax").style["-webkit-transform"] = "translateY("+(window.pageYOffset/3)+"px)"; | |
} else { | |
document.getElementById("parallax").style["-webkit-transform"] = "translateY(0px)"; | |
} | |
} |
View Anchor Custom Article Field
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
<?php | |
/* | |
This is to show a custom field from an article. | |
It will need to be created in the metadata section before it can be used in the post edit area. | |
In this case the custom field will need to be called 'image' and be set as an image custom field in the dropdown for type. | |
*/ | |
$image = article_custom_field('image'); // Applying a variable to the custom field, so it can be reused with ease | |
if ( !empty($image) ) : // Check if the field is empty, if it is the process stops here | |
?> | |
<figure> |
View GFM-rouge-configuation.html
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
Liquid highlight with language type: {% hightlight html %} | |
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><html></span> | |
<span class="nt"><p></span>Hi world<span class="nt"></p></span> | |
<span class="nt"></html></span></code><button class="button--copy">Copy <span class="octicon octicon-clippy"></span></button></pre></figure> | |
Backticks with language type: ``` html | |
<div class="highlighter-rouge"><pre class="highlight"><code><span class="nt"><html></span> |
View rich-data-research.md
- Open Graph
- Aria Roles
- Schema attributes
- HTML5 elements
View _config.yml
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
# Permalinks | |
permalink: pretty | |
# Posts | |
excerpt_separator: <!-- more --> | |
# Site info | |
url: "https://darn.es" | |
title: "David Darnes" | |
description: "Web Designer & Front-end Developer" |
OlderNewer