Skip to content

Instantly share code, notes, and snippets.

View henrikakselsen's full-sized avatar

Henrik Akselsen henrikakselsen

  • Frontkom
  • Norway
View GitHub Profile
<div itemscope itemtype="http://schema.org/ProfilePage">
<div itemscope itemtype="http://schema.org/Person">
<img itemprop="image" class="circle" src="http://cdn2.hubspot.net/hubfs/536142/Frontkom_profiles/[name]2x.jpg" alt="[name]" title="[name]" width="320" style="width: 320; margin: 0px 0px 10px 10px; float: right;" data-constrained="true">
<h1><span itemprop="name">[name]</span></h1>
<p class="lead">
<strong><span itemprop="jobTitle">[title]</span></strong><br>
Telefon: <a href="tel:[phone]"><span itemprop="telephone">[phone]</span></a><br>
E-post: <a href="mailto:[email]"><span itemprop="email">[email]</span></a><br>
Sted: <span itemprop="workLocation">[location]</span>
</p>
@henrikakselsen
henrikakselsen / which-wordpress-template.php
Last active July 5, 2016 09:16
Show which template is used by WordPress
// Add this to your functions.php file
add_action('wp_head', 'show_template');
function show_template() {
global $template;
print_r($template);
}