skyframe 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/skyframe/version.rb +1 -1
- data/templates/project/files/favicon.png +0 -0
- data/templates/project/index.html +112 -0
- data/templates/project/manifest.rb +2 -2
- metadata +3 -1
data/lib/skyframe/version.rb
CHANGED
Binary file
|
@@ -0,0 +1,112 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
|
3
|
+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
|
4
|
+
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
|
5
|
+
<!-- Consider adding a manifest.appcache: h5bp.com/d/Offline -->
|
6
|
+
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
|
7
|
+
<head>
|
8
|
+
<meta charset="utf-8">
|
9
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
10
|
+
|
11
|
+
<title>Skyframe v0.0.1(Alpha) - Home</title>
|
12
|
+
<meta name="description" content="">
|
13
|
+
<meta name="viewport" content="width=device-width">
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="css/screen.css">
|
16
|
+
|
17
|
+
<!--#include virtual="inc/js-top.html" -->
|
18
|
+
|
19
|
+
</head>
|
20
|
+
<body>
|
21
|
+
|
22
|
+
<!--[if lt IE 7]>
|
23
|
+
<p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
|
24
|
+
<![endif]-->
|
25
|
+
|
26
|
+
<div class="container">
|
27
|
+
|
28
|
+
<header class="mod-header" id="header"><!--#include virtual="inc/header.html" --></header>
|
29
|
+
|
30
|
+
<nav class="mod-main-nav" id="main-nav"><!--#include virtual="inc/main-nav.html" --></nav>
|
31
|
+
|
32
|
+
<div class="mod-breadcrumb" id="breadcrumb"><!--#include virtual="inc/breadcrumb.html" --></div>
|
33
|
+
|
34
|
+
|
35
|
+
<div class="page-wrapper" id="page-wrapper" role="main">
|
36
|
+
|
37
|
+
|
38
|
+
<article class="l-main" id="main">
|
39
|
+
|
40
|
+
<section class="mod-content">
|
41
|
+
|
42
|
+
<div class="mod-intro">
|
43
|
+
<header>
|
44
|
+
<h1>Layout: Main</h1>
|
45
|
+
<h2>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.</h2>
|
46
|
+
</header>
|
47
|
+
<section>
|
48
|
+
<p>Lorem ipsum dolor sit amet, consectetur adip*isicing elit, sed do eiusmod *tempor incididunt ut labore et dolore magna aliqua.</p>
|
49
|
+
</section>
|
50
|
+
<footer>
|
51
|
+
<a class="btn" href="#">Link in footer</a>
|
52
|
+
</footer>
|
53
|
+
</div><!-- /.mod-intro -->
|
54
|
+
|
55
|
+
|
56
|
+
<div class="mod-spotlight" id="spotlight">
|
57
|
+
<section>
|
58
|
+
<ul>
|
59
|
+
<li><a href="#"><img src="img/dummy-full.png" alt=""></a></li>
|
60
|
+
<li><a href="#"><img src="img/dummy-full.png" alt=""></a></li>
|
61
|
+
<li><a href="#"><img src="img/dummy-full.png" alt=""></a></li>
|
62
|
+
</ul>
|
63
|
+
</section>
|
64
|
+
</div>
|
65
|
+
<div class="mod-spotlight-nav" id="spotlight-nav"></div>
|
66
|
+
|
67
|
+
<!-- /.mod-spotlight -->
|
68
|
+
|
69
|
+
<div class="mod-strip">
|
70
|
+
<article>
|
71
|
+
<header><h3>Art 1</h3></header>
|
72
|
+
<section>
|
73
|
+
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
|
74
|
+
</section>
|
75
|
+
<footer>
|
76
|
+
<a href="#" class="btn">Read more</a>
|
77
|
+
</footer>
|
78
|
+
</article>
|
79
|
+
<article>
|
80
|
+
<header><h3>Art 2</h3></header>
|
81
|
+
<section>
|
82
|
+
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
|
83
|
+
</section>
|
84
|
+
<footer>
|
85
|
+
<a href="#" class="btn">Read more</a>
|
86
|
+
</footer>
|
87
|
+
</article>
|
88
|
+
<article>
|
89
|
+
<header><h3>Art 3</h3></header>
|
90
|
+
<section>
|
91
|
+
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
|
92
|
+
</section>
|
93
|
+
<footer>
|
94
|
+
<a href="#" class="btn">Read more</a>
|
95
|
+
</footer>
|
96
|
+
</article>
|
97
|
+
</div><!-- /.mod-strip -->
|
98
|
+
|
99
|
+
</section><!-- /.mod-content -->
|
100
|
+
|
101
|
+
</article><!-- /.l-main -->
|
102
|
+
|
103
|
+
</div><!-- /#main-->
|
104
|
+
|
105
|
+
<footer class="mod-footer" id="footer"><!--#include virtual="inc/footer.html" --></footer>
|
106
|
+
|
107
|
+
</div><!-- /.container -->
|
108
|
+
|
109
|
+
<!--#include virtual="inc/js-bottom.html" -->
|
110
|
+
|
111
|
+
</body>
|
112
|
+
</html>
|
@@ -108,7 +108,7 @@ image 'files/dummy-full.png', :to => 'dummy-full.png'
|
|
108
108
|
image 'files/dummy-square.png', :to => 'dummy-square.png'
|
109
109
|
image 'files/bg_direction_nav.png', :to => 'bg_direction_nav.png'
|
110
110
|
image 'files/logo.png', :to => 'logo.png'
|
111
|
-
image 'files/logo@
|
111
|
+
image 'files/logo@2x.png', :to => 'logo@2x.png'
|
112
112
|
image 'files/icon-gmap.png', :to => 'icon-gmap.png'
|
113
113
|
image 'files/icon-search.png', :to => 'icon-search.png'
|
114
114
|
image 'files/video-js.png', :to => 'video-js.png'
|
@@ -117,7 +117,7 @@ html 'files/crossdomain.xml', :to => 'crossdomain.xml'
|
|
117
117
|
html 'files/robots.txt', :to => 'robots.txt'
|
118
118
|
html 'files/humans.txt', :to => 'humans.txt'
|
119
119
|
html 'files/htaccess.txt', :to => '.htaccess'
|
120
|
-
file 'files/readme.
|
120
|
+
file 'files/readme.md'
|
121
121
|
file 'files/CHANGELOG.md'
|
122
122
|
file 'files/config.rb', :to => 'config.rb'
|
123
123
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: skyframe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -103,6 +103,7 @@ files:
|
|
103
103
|
- templates/project/files/dummy-full.png
|
104
104
|
- templates/project/files/dummy-square.png
|
105
105
|
- templates/project/files/favicon.ico
|
106
|
+
- templates/project/files/favicon.png
|
106
107
|
- templates/project/files/flash/video-js.swf
|
107
108
|
- templates/project/files/forgot-password.html
|
108
109
|
- templates/project/files/htaccess.txt
|
@@ -126,6 +127,7 @@ files:
|
|
126
127
|
- templates/project/files/sign-in.html
|
127
128
|
- templates/project/files/sitemap.html
|
128
129
|
- templates/project/files/video-js.png
|
130
|
+
- templates/project/index.html
|
129
131
|
- templates/project/javascripts/libs/jquery-1.8.0.min.js
|
130
132
|
- templates/project/javascripts/libs/jquery.validationEngine.js
|
131
133
|
- templates/project/javascripts/libs/languages/jquery.validationEngine-cz.js
|