Created
February 11, 2015 13:46
-
-
Save orleika/6b8ecfa291d75d38fbb8 to your computer and use it in GitHub Desktop.
ECTテンプレート ref: http://qiita.com/Orleika/items/ea86639048a71b8514ea
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
<% extend 'layout' %> | |
<div class="wrapper"> | |
<header role="banner"> | |
<h1></h1> | |
</header> | |
<main role="main"> | |
</main> | |
<footer role="contentinfo"> | |
</footer> | |
</div> |
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> | |
<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> |
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
<script src="javascripts/main.js"></script> | |
<% content 'script' %> |
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="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