Skip to content

Instantly share code, notes, and snippets.

@orleika
Created February 11, 2015 13:46
Show Gist options
  • Save orleika/6b8ecfa291d75d38fbb8 to your computer and use it in GitHub Desktop.
Save orleika/6b8ecfa291d75d38fbb8 to your computer and use it in GitHub Desktop.
<% extend 'layout' %>
<div class="wrapper">
<header role="banner">
<h1></h1>
</header>
<main role="main">
</main>
<footer role="contentinfo">
</footer>
</div>
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="keywords" content="<%- @keywords %>">
<meta name="description" content="<%- @description %>">
<meta property="og:type" content="<%- @og_type %>">
<meta property="og:title" content="<%- @title %>">
<meta property="og:image" content="<%- @og_image %>">
<meta property="og:url" content="<%- @og_url %>">
<meta property="og:description" content="<%- @description %>">
<meta property="og:site_name" content="<%- @og_site %>">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<% include 'style' %>
<title><%- @title %></title>
</head>
<body>
<% content %>
<% include 'script' %>
</body>
</html>
<script src="javascripts/main.js"></script>
<% content 'script' %>
<link rel="stylesheet" href="stylesheets/normalize.css">
<link rel="stylesheet" href="stylesheets/style.css">
<% content 'style' %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment