- 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
This file contains hidden or 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; | |
} |
This file contains hidden or 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
<div class="bg-header" | |
<?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 | |
?> |
This file contains hidden or 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> |
This file contains hidden or 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
<!-- Open graph meta --> | |
<meta property="og:type" content="website"> | |
<meta property="og:site_name" content="<?php echo site_name(); ?>"> | |
<?php if(is_homepage() == true) : ?> | |
<meta property="og:url" content="http://websiteaddress.com"> | |
<meta property="og:title" content="<?php echo site_name(); ?>"> | |
<meta property="og:description" content="<?php echo site_description(); ?>"> | |
<?php else: ?> | |
<meta property="og:url" content="<?php echo "http://websiteaddress.com/" . current_url(); ?>"> | |
<meta property="og:title" content="<?php echo page_title('Page can’t be found'); ?> - <?php echo site_name(); ?>"> |
This file contains hidden or 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"> |
My subscription list:
This file contains hidden or 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; | |
} |
This file contains hidden or 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)"; | |
} | |
} |
OlderNewer