Skip to content

Commit

Permalink
boom
Browse files Browse the repository at this point in the history
  • Loading branch information
chee committed Mar 28, 2013
1 parent 53b1090 commit 5f5b336
Show file tree
Hide file tree
Showing 6 changed files with 72 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .editorconfig
@@ -0,0 +1,21 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# Change these settings to your own preference
indent_style = tab
indent_size = 2

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
* text=auto
22 changes: 22 additions & 0 deletions .jshintrc
@@ -0,0 +1,22 @@
{
"node": true,
"browser": true,
"es5": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true
}
3 changes: 2 additions & 1 deletion index.html
@@ -1,4 +1,4 @@
<!doctype html>
<!doctype html>
<html class="no-js">
<meta charset="utf-8">
<title>Peaksound</title>
Expand All @@ -20,5 +20,6 @@ <h1><strong>Peak</strong>Sound</h1>
</nav>
</header>
<div class="main" role="main">

</div>
</div>
17 changes: 17 additions & 0 deletions index.kit
@@ -0,0 +1,17 @@
<!-- include 'tmpl/head.kit' -->
<div class="container">
<header class="top-header">
<h1><strong>Peak</strong>Sound</h1>
<nav>
<ul>
<li><a href="about.html" class="selected">about us</a>
<li><a href="system.html">sound system</a>
<li><a href="service.html">services &amp; pricing</a>
<li><a href="contact.html">contact</a>
</ul>
</nav>
</header>
<div class="main" role="main">

</div>
</div>
9 changes: 9 additions & 0 deletions tmpl/head.html
@@ -0,0 +1,9 @@
<!doctype html>
<html class="no-js">
<meta charset="utf-8">
<title>Peaksound</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="Peak Sound: Highest quality, lowest cost sound system in Belfast.">
<meta name="viewport" content="width:device-width">
<link rel="stylesheet" href="style/gorgeous.css">
<script src="lib/modernizr.js"></script>

0 comments on commit 5f5b336

Please sign in to comment.