Skip to content

Instantly share code, notes, and snippets.

@Siroyan
Created February 15, 2018 06:07
Show Gist options
  • Save Siroyan/409eb646672edaaf3bd571bb8faddef0 to your computer and use it in GitHub Desktop.
Save Siroyan/409eb646672edaaf3bd571bb8faddef0 to your computer and use it in GitHub Desktop.
Snippet for website development on Atom
#HTML
'.text.html.basic':
'Site Stationery':
'prefix':'stationery'
'body':"""
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>hogehoge</title>
<link rel="stylesheet" type=t ext/css href="css/main.css" />
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<div class="container">
<div class="header">
<p>
hogehoge
</p>
</div>
<div class="main">
<p>
hogehoge
</p>
</div>
<div class="footer">
<p>
hogehoge
</p>
</div>
</div>
</body>
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment