Skip to content

Commit 657f4dd

Browse files
committed
gulp template setup
1 parent 2860bfa commit 657f4dd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+735
-2053
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Frontend-devil
2+
Devil boilerplate for html+js+css apps. Почитать как это готовить можно [тут](http://habrahabr.ru/post/250569/ "Readme")

bower.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "frontend-devil",
3+
"version": "1.0.0",
4+
"homepage": "https://github.com/Insayt/frontend-devil",
5+
"authors": [
6+
"Alex Insayt <[email protected]>"
7+
],
8+
"description": "Devil boilerplate for html+js+css apps",
9+
"moduleType": [
10+
"globals"
11+
],
12+
"license": "MIT",
13+
"dependencies": {
14+
"jquery": "2.*"
15+
},
16+
"devDependencies": {
17+
"jquery-validation": "~1.13.1"
18+
}
19+
}

build/css/screen.css

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/fonts/OpenSans-Regular.ttf

212 KB
Binary file not shown.

build/img/icons/codedby.png

145 Bytes
Loading

build/img/icons/coderiver.png

158 Bytes
Loading

build/img/icons/marker.png

348 Bytes
Loading

build/img/sprite.png

1.05 KB
Loading

build/img/svg/smile.svg

+33
Loading

build/img/user.png

6.56 KB
Loading

build/index.html

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<title>index</title>
5+
<meta charset="utf-8">
6+
<meta name="theme-color" content="#fff">
7+
<meta name="format-detection" content="telephone=no">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
9+
<link rel="stylesheet" media="all" href="css/screen.css" >
10+
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,700,500,300italic,400italic&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
11+
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
12+
<!--[if IE]><script src="js/html5shiv.js"></script><![endif]-->
13+
</head>
14+
<body>
15+
<!-- BEGIN out-->
16+
<div class="out">
17+
<div class="header">
18+
header
19+
</div>
20+
<div class="push"></div>
21+
</div>
22+
<div class="footer">
23+
footer
24+
</div>
25+
<script src="js/main.js"></script>
26+
</body>
27+
</html>
28+
<!-- load scripts -->
29+
<script src="js/main.js"></script>
30+
</body>
31+
</html>

build/js/app.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
(function() {
2+
3+
4+
5+
6+
})();

build/js/main.js

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

config.rb

-53
This file was deleted.

css/screen.css

-28
This file was deleted.

0 commit comments

Comments
 (0)