sixhour 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/public/images/sixhour.png +0 -0
- data/public/stylesheets/app.css +13 -0
- data/views/index.haml +5 -1
- data/views/layout.haml +14 -4
- metadata +3 -1
|
Binary file
|
data/views/index.haml
CHANGED
data/views/layout.haml
CHANGED
|
@@ -2,11 +2,21 @@
|
|
|
2
2
|
%html{ :xmlns => "http://www.w3.org/1999/xhtml", :lang => "en", 'xml:lang' => "en" }
|
|
3
3
|
%head
|
|
4
4
|
%title Simple Web Application Template
|
|
5
|
-
- ['reset','text','960'].each do |css|
|
|
6
|
-
%link{ :href => "/stylesheets/#{css}.css", :
|
|
5
|
+
- ['reset','text','960','app'].each do |css|
|
|
6
|
+
%link{ :href => "/stylesheets/#{css}.css", :rel => "stylesheet", :type => "text/css", :media => "screen", :charset => "utf-8" }
|
|
7
7
|
%body
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
#header
|
|
9
|
+
.container_12
|
|
10
|
+
%h1 SixHour
|
|
11
|
+
|
|
12
|
+
#wrap
|
|
13
|
+
.container_16
|
|
14
|
+
= yield
|
|
15
|
+
.clear
|
|
16
|
+
#footer
|
|
17
|
+
.container_12
|
|
18
|
+
.grid_4.prefix_8
|
|
19
|
+
%p Jack Russell Software Company, LLC
|
|
10
20
|
|
|
11
21
|
- ['jquery-1.4.1.min'].each do |js|
|
|
12
22
|
%script{:src => "/javascripts/#{js}.js", :type => 'text/javascript'}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sixhour
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom Wilson
|
|
@@ -45,8 +45,10 @@ files:
|
|
|
45
45
|
- app.rb
|
|
46
46
|
- config.ru
|
|
47
47
|
- lib/swat.rb
|
|
48
|
+
- public/images/sixhour.png
|
|
48
49
|
- public/javascripts/jquery-1.4.1.min.js
|
|
49
50
|
- public/stylesheets/960.css
|
|
51
|
+
- public/stylesheets/app.css
|
|
50
52
|
- public/stylesheets/reset.css
|
|
51
53
|
- public/stylesheets/text.css
|
|
52
54
|
- readme.md
|