skyframe 0.0.1.beta

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.
Files changed (111) hide show
  1. data/lib/skyframe.rb +8 -0
  2. data/lib/skyframe/version.rb +3 -0
  3. data/stylesheets/_main.scss +1 -0
  4. data/templates/project/files/404.html +157 -0
  5. data/templates/project/files/CHANGELOG.md +19 -0
  6. data/templates/project/files/about.html +96 -0
  7. data/templates/project/files/apple-touch-icon-114x114-precomposed.png +0 -0
  8. data/templates/project/files/apple-touch-icon-144x144-precomposed.png +0 -0
  9. data/templates/project/files/apple-touch-icon-57x57-precomposed.png +0 -0
  10. data/templates/project/files/apple-touch-icon-72x72-precomposed.png +0 -0
  11. data/templates/project/files/apple-touch-icon-precomposed.png +0 -0
  12. data/templates/project/files/apple-touch-icon.png +0 -0
  13. data/templates/project/files/bg_direction_nav.png +0 -0
  14. data/templates/project/files/blog-details.html +255 -0
  15. data/templates/project/files/blog.html +157 -0
  16. data/templates/project/files/config.rb +28 -0
  17. data/templates/project/files/contact.html +158 -0
  18. data/templates/project/files/crossdomain.xml +15 -0
  19. data/templates/project/files/dummy-full.png +0 -0
  20. data/templates/project/files/dummy-square.png +0 -0
  21. data/templates/project/files/favicon.ico +0 -0
  22. data/templates/project/files/flash/video-js.swf +0 -0
  23. data/templates/project/files/forgot-password.html +101 -0
  24. data/templates/project/files/htaccess.txt +536 -0
  25. data/templates/project/files/humans.txt +18 -0
  26. data/templates/project/files/icon-gmap.png +0 -0
  27. data/templates/project/files/icon-search.png +0 -0
  28. data/templates/project/files/inc/breadcrumb.html +5 -0
  29. data/templates/project/files/inc/footer.html +37 -0
  30. data/templates/project/files/inc/header.html +20 -0
  31. data/templates/project/files/inc/js-bottom.html +21 -0
  32. data/templates/project/files/inc/js-top.html +10 -0
  33. data/templates/project/files/inc/main-nav.html +7 -0
  34. data/templates/project/files/logo.png +0 -0
  35. data/templates/project/files/logo@2x.png +0 -0
  36. data/templates/project/files/media/audio/dummy-audio.mp3 +0 -0
  37. data/templates/project/files/media/video/dummy-video.mp4 +0 -0
  38. data/templates/project/files/products.html +100 -0
  39. data/templates/project/files/readme.md +55 -0
  40. data/templates/project/files/robots.txt +3 -0
  41. data/templates/project/files/services.html +75 -0
  42. data/templates/project/files/sign-in.html +104 -0
  43. data/templates/project/files/sitemap.html +102 -0
  44. data/templates/project/files/video-js.png +0 -0
  45. data/templates/project/javascripts/libs/jquery-1.8.0.min.js +2 -0
  46. data/templates/project/javascripts/libs/jquery.validationEngine.js +1819 -0
  47. data/templates/project/javascripts/libs/languages/jquery.validationEngine-cz.js +156 -0
  48. data/templates/project/javascripts/libs/languages/jquery.validationEngine-da.js +135 -0
  49. data/templates/project/javascripts/libs/languages/jquery.validationEngine-de.js +139 -0
  50. data/templates/project/javascripts/libs/languages/jquery.validationEngine-en.js +192 -0
  51. data/templates/project/javascripts/libs/languages/jquery.validationEngine-es.js +137 -0
  52. data/templates/project/javascripts/libs/languages/jquery.validationEngine-et.js +139 -0
  53. data/templates/project/javascripts/libs/languages/jquery.validationEngine-fa.js +181 -0
  54. data/templates/project/javascripts/libs/languages/jquery.validationEngine-fi.js +111 -0
  55. data/templates/project/javascripts/libs/languages/jquery.validationEngine-fr.js +129 -0
  56. data/templates/project/javascripts/libs/languages/jquery.validationEngine-hr.js +177 -0
  57. data/templates/project/javascripts/libs/languages/jquery.validationEngine-hu.js +179 -0
  58. data/templates/project/javascripts/libs/languages/jquery.validationEngine-it.js +111 -0
  59. data/templates/project/javascripts/libs/languages/jquery.validationEngine-ja.js +149 -0
  60. data/templates/project/javascripts/libs/languages/jquery.validationEngine-nl.js +136 -0
  61. data/templates/project/javascripts/libs/languages/jquery.validationEngine-pl.js +140 -0
  62. data/templates/project/javascripts/libs/languages/jquery.validationEngine-pt.js +135 -0
  63. data/templates/project/javascripts/libs/languages/jquery.validationEngine-pt_BR.js +127 -0
  64. data/templates/project/javascripts/libs/languages/jquery.validationEngine-ro.js +177 -0
  65. data/templates/project/javascripts/libs/languages/jquery.validationEngine-ru.js +136 -0
  66. data/templates/project/javascripts/libs/languages/jquery.validationEngine-se.js +153 -0
  67. data/templates/project/javascripts/libs/languages/jquery.validationEngine-tr.js +156 -0
  68. data/templates/project/javascripts/libs/languages/jquery.validationEngine-vi.js +179 -0
  69. data/templates/project/javascripts/libs/languages/jquery.validationEngine-zh_CN.js +177 -0
  70. data/templates/project/javascripts/libs/languages/jquery.validationEngine-zh_TW.js +177 -0
  71. data/templates/project/javascripts/libs/modernizr-2.5.3.min.js +4 -0
  72. data/templates/project/javascripts/libs/respond.min.js +6 -0
  73. data/templates/project/javascripts/libs/selectivizr.js +560 -0
  74. data/templates/project/javascripts/plugins.js +83 -0
  75. data/templates/project/javascripts/script.js +282 -0
  76. data/templates/project/manifest.rb +136 -0
  77. data/templates/project/partials/_debug.scss +114 -0
  78. data/templates/project/partials/_functions.scss +10 -0
  79. data/templates/project/partials/_helpers.scss +86 -0
  80. data/templates/project/partials/_layout.scss +188 -0
  81. data/templates/project/partials/_media.scss +191 -0
  82. data/templates/project/partials/_misc.scss +103 -0
  83. data/templates/project/partials/_mixins.scss +140 -0
  84. data/templates/project/partials/_mods.scss +59 -0
  85. data/templates/project/partials/_normalize.scss +36 -0
  86. data/templates/project/partials/_print.scss +80 -0
  87. data/templates/project/partials/_type.scss +331 -0
  88. data/templates/project/partials/_vars.scss +114 -0
  89. data/templates/project/partials/mods/_mod-block.scss +96 -0
  90. data/templates/project/partials/mods/_mod-breadcrumb.scss +103 -0
  91. data/templates/project/partials/mods/_mod-carousel.scss +108 -0
  92. data/templates/project/partials/mods/_mod-footer.scss +199 -0
  93. data/templates/project/partials/mods/_mod-form.scss +319 -0
  94. data/templates/project/partials/mods/_mod-header.scss +291 -0
  95. data/templates/project/partials/mods/_mod-intro.scss +98 -0
  96. data/templates/project/partials/mods/_mod-layouts.scss +135 -0
  97. data/templates/project/partials/mods/_mod-main-nav.scss +143 -0
  98. data/templates/project/partials/mods/_mod-map.scss +107 -0
  99. data/templates/project/partials/mods/_mod-msg.scss +119 -0
  100. data/templates/project/partials/mods/_mod-paging.scss +101 -0
  101. data/templates/project/partials/mods/_mod-sitemap.scss +132 -0
  102. data/templates/project/partials/mods/_mod-split-form.scss +98 -0
  103. data/templates/project/partials/mods/_mod-strip.scss +118 -0
  104. data/templates/project/partials/mods/_mod-table.scss +118 -0
  105. data/templates/project/partials/mods/_mod-widget.scss +103 -0
  106. data/templates/project/partials/plugins/_flexslider.scss +82 -0
  107. data/templates/project/partials/plugins/_validation-engine.scss +137 -0
  108. data/templates/project/partials/plugins/_video-js.scss +616 -0
  109. data/templates/project/partials/sass-template.scss +103 -0
  110. data/templates/project/screen.scss +2 -0
  111. metadata +220 -0
data/lib/skyframe.rb ADDED
@@ -0,0 +1,8 @@
1
+ require "skyframe/version"
2
+
3
+ extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
4
+ Compass::Frameworks.register('skyframe', :path => extension_path)
5
+
6
+ module Skyframe
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,3 @@
1
+ module Skyframe
2
+ VERSION = "0.0.1.beta"
3
+ end
@@ -0,0 +1 @@
1
+ // This is your framework's main stylesheet. Use it to import all default modules.
@@ -0,0 +1,157 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Page Not Found :(</title>
6
+ <style>
7
+ ::-moz-selection {
8
+ background: #b3d4fc;
9
+ text-shadow: none;
10
+ }
11
+
12
+ ::selection {
13
+ background: #b3d4fc;
14
+ text-shadow: none;
15
+ }
16
+
17
+ html {
18
+ padding: 30px 10px;
19
+ font-size: 20px;
20
+ line-height: 1.4;
21
+ color: #737373;
22
+ background: #f0f0f0;
23
+ -webkit-text-size-adjust: 100%;
24
+ -ms-text-size-adjust: 100%;
25
+ }
26
+
27
+ html,
28
+ input {
29
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
30
+ }
31
+
32
+ body {
33
+ max-width: 500px;
34
+ _width: 500px;
35
+ padding: 30px 20px 50px;
36
+ border: 1px solid #b3b3b3;
37
+ border-radius: 4px;
38
+ margin: 0 auto;
39
+ box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff;
40
+ background: #fcfcfc;
41
+ }
42
+
43
+ h1 {
44
+ margin: 0 10px;
45
+ font-size: 50px;
46
+ text-align: center;
47
+ }
48
+
49
+ h1 span {
50
+ color: #bbb;
51
+ }
52
+
53
+ h3 {
54
+ margin: 1.5em 0 0.5em;
55
+ }
56
+
57
+ p {
58
+ margin: 1em 0;
59
+ }
60
+
61
+ ul {
62
+ padding: 0 0 0 40px;
63
+ margin: 1em 0;
64
+ }
65
+
66
+ .container {
67
+ max-width: 380px;
68
+ _width: 380px;
69
+ margin: 0 auto;
70
+ }
71
+
72
+ /* google search */
73
+
74
+ #goog-fixurl ul {
75
+ list-style: none;
76
+ padding: 0;
77
+ margin: 0;
78
+ }
79
+
80
+ #goog-fixurl form {
81
+ margin: 0;
82
+ }
83
+
84
+ #goog-wm-qt,
85
+ #goog-wm-sb {
86
+ border: 1px solid #bbb;
87
+ font-size: 16px;
88
+ line-height: normal;
89
+ vertical-align: top;
90
+ color: #444;
91
+ border-radius: 2px;
92
+ }
93
+
94
+ #goog-wm-qt {
95
+ width: 220px;
96
+ height: 20px;
97
+ padding: 5px;
98
+ margin: 5px 10px 0 0;
99
+ box-shadow: inset 0 1px 1px #ccc;
100
+ }
101
+
102
+ #goog-wm-sb {
103
+ display: inline-block;
104
+ height: 32px;
105
+ padding: 0 10px;
106
+ margin: 5px 0 0;
107
+ white-space: nowrap;
108
+ cursor: pointer;
109
+ background-color: #f5f5f5;
110
+ background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1);
111
+ background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1);
112
+ background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1);
113
+ background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1);
114
+ -webkit-appearance: none;
115
+ -moz-appearance: none;
116
+ appearance: none;
117
+ *overflow: visible;
118
+ *display: inline;
119
+ *zoom: 1;
120
+ }
121
+
122
+ #goog-wm-sb:hover,
123
+ #goog-wm-sb:focus {
124
+ border-color: #aaa;
125
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
126
+ background-color: #f8f8f8;
127
+ }
128
+
129
+ #goog-wm-qt:hover,
130
+ #goog-wm-qt:focus {
131
+ border-color: #105cb6;
132
+ outline: 0;
133
+ color: #222;
134
+ }
135
+
136
+ input::-moz-focus-inner {
137
+ padding: 0;
138
+ border: 0;
139
+ }
140
+ </style>
141
+ </head>
142
+ <body>
143
+ <div class="container">
144
+ <h1>Not found <span>:(</span></h1>
145
+ <p>Sorry, but the page you were trying to view does not exist.</p>
146
+ <p>It looks like this was the result of either:</p>
147
+ <ul>
148
+ <li>a mistyped address</li>
149
+ <li>an out-of-date link</li>
150
+ </ul>
151
+ <script>
152
+ var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2),GOOG_FIXURL_SITE = location.host;
153
+ </script>
154
+ <script src="http://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
155
+ </div>
156
+ </body>
157
+ </html>
@@ -0,0 +1,19 @@
1
+ == 0.0.1 (Aug 20, 2012)
2
+
3
+ - Issues
4
+ * Maps IE7/IE8 - doesn't work when view through a virtual machine.
5
+
6
+ - Todo
7
+ * Improve Media Query variables - Maybe EMs instead PX
8
+
9
+ - List of Pages
10
+ * index
11
+ * about
12
+ * services
13
+ * products
14
+ * contact
15
+ * blog
16
+ * blog details
17
+ * sign-in
18
+ * forgot password
19
+ * sitemap
@@ -0,0 +1,96 @@
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) - About</title>
12
+ <meta name="description" content="">
13
+ <meta name="viewport" content="width=device-width">
14
+ <link rel="stylesheet" href="css/screen.css">
15
+ <!--#include virtual="inc/js-top.html" -->
16
+ </head>
17
+ <body>
18
+
19
+ <!--[if lt IE 7]>
20
+ <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>
21
+ <![endif]-->
22
+
23
+ <div class="container">
24
+
25
+ <header class="mod-header" id="header"><!--#include virtual="inc/header.html" --></header>
26
+
27
+ <nav class="mod-main-nav" id="main-nav"><!--#include virtual="inc/main-nav.html" --></nav>
28
+
29
+ <div class="mod-breadcrumb" id="breadcrumb"><!--#include virtual="inc/breadcrumb.html" --></div>
30
+
31
+ <div class="page-wrapper" id="page-wrapper" role="main">
32
+
33
+ <article class="l-side-main" id="main">
34
+
35
+ <section class="mod-content">
36
+
37
+ <div class="mod-intro has-figure pos-left">
38
+ <header>
39
+ <h1>About - intro</h1>
40
+ <h2>Layout: Side-Main</h2>
41
+ </header>
42
+ <figure>
43
+ <img src="img/dummy-square.png" alt="">
44
+ </figure>
45
+ <section>
46
+ <p>Lorem ipsum dolor sit amet, consectetur adip*isicing elit, sed do eiusmod *tempor incididunt ut labore et dolore magna aliqua.</p>
47
+ </section>
48
+ <footer>
49
+ <p><a href="#">Link in footer</a></p>
50
+ </footer>
51
+ </div><!-- /.mod-intro -->
52
+
53
+ <div class="mod-block">
54
+ <header>
55
+ <h2>Dot mod-block</h2>
56
+ </header>
57
+ <section>
58
+
59
+ <video id="vid-01" class="video-js vjs-default-skin" controls preload="none" >
60
+ <source type='video/mp4' src="media/video/dummy-video.mp4" />
61
+ <p>Your browser does not support this feature. <a href="media/video/dummy-video.mp4">Download the video</a></p>
62
+ </video>
63
+
64
+ <p>Lorem ipsum dolor sit amet, consectetur adip*isicing elit, sed do eiusmod *tempor incididunt ut labore et dolore magna aliqua.</p>
65
+ </section>
66
+ <footer>
67
+ <p><a href="#">Link in footer</a></p>
68
+ </footer>
69
+ </div><!-- /.mod-intro -->
70
+
71
+
72
+ </section><!-- /.mod-content -->
73
+
74
+ <aside class="mod-sidebar">
75
+
76
+ <ul class="mod-page-nav">
77
+ <li class="is-active"><a href="#">Link one</a></li>
78
+ <li><a href="#">Link two</a></li>
79
+ <li><a href="#">Link three</a></li>
80
+ </ul>
81
+
82
+ </aside>
83
+
84
+
85
+ </article><!-- /.l-side-main -->
86
+
87
+ </div><!-- /#main-->
88
+
89
+ <footer class="mod-footer" id="footer"><!--#include virtual="inc/footer.html" --></footer>
90
+
91
+ </div><!-- /.container -->
92
+
93
+ <!--#include virtual="inc/js-bottom.html" -->
94
+
95
+ </body>
96
+ </html>
@@ -0,0 +1,255 @@
1
+ <!doctype html>
2
+ <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
3
+ <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
4
+ <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
5
+ <!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
6
+ <!-- Consider adding a manifest.appcache: h5bp.com/d/Offline -->
7
+ <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
8
+ <head>
9
+ <meta charset="utf-8">
10
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
11
+
12
+ <title>Skyframe v0.0.1(Alpha) - Blog Details</title>
13
+ <meta name="description" content="">
14
+ <meta name="viewport" content="width=device-width">
15
+ <link rel="stylesheet" href="css/screen.css">
16
+ <!--#include virtual="inc/js-top.html" -->
17
+ </head>
18
+ <body>
19
+
20
+ <!--[if lt IE 7]>
21
+ <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>
22
+ <![endif]-->
23
+
24
+ <div class="container">
25
+
26
+ <header class="mod-header" id="header"><!--#include virtual="inc/header.html" --></header>
27
+
28
+ <nav class="mod-main-nav" id="main-nav"><!--#include virtual="inc/main-nav.html" --></nav>
29
+
30
+ <div class="mod-breadcrumb" id="breadcrumb"><!--#include virtual="inc/breadcrumb.html" --></div>
31
+
32
+
33
+ <div class="page-wrapper" id="page-wrapper" role="main">
34
+
35
+ <article class="l-main-side" id="main">
36
+
37
+ <section class="mod-content">
38
+
39
+ <div class="mod-intro">
40
+ <header>
41
+ <h1>Blog Post Title</h1>
42
+
43
+ <ul class="mod-meta">
44
+ <li class="posted-on"><em>Published:</em> July 12, 2012</li>
45
+ <li class="posted-by"><em>Author:</em> Cerillion Skyline</li>
46
+ <li class="tags"><em>Tags:</em>
47
+
48
+ <a href="#">Design</a>
49
+ <a href="#">Development</a>
50
+ <a href="#">UX</a>
51
+
52
+ </li>
53
+ <li class="category"><em>Categories: </em> <a href="#">Responsive Design</a></li>
54
+ <li class="num-comments">2 comments</li>
55
+ </ul>
56
+
57
+ </header>
58
+ <section>
59
+ <p>Lorem ipsum dolor sit amet, consectetur adip*isicing elit, sed do eiusmod *tempor incididunt ut labore et dolore magna aliqua.</p>
60
+ </section>
61
+ </div><!-- /.mod-intro -->
62
+
63
+ <div class="mod-block">
64
+ <section>
65
+ <p>Dolor sit amet, consectetur adip*isicing elit, sed do eiusmod *tempor incididunt ut labore et dolore magna aliqua.</p>
66
+ <img class="fig-right" src="img/dummy-square.png" alt="">
67
+ <p>Ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
68
+ tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
69
+ quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
70
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
71
+ cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
72
+ proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
73
+ <h2>Header two</h2>
74
+ <ul>
75
+ <li>Sunt in culpa qui officia</li>
76
+ <li>Ullamco laboris nisi</li>
77
+ <li>Excepteur sint occaecat</li>
78
+ <li>Aliquip ex ea commodo</li>
79
+ </ul>
80
+
81
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
82
+ tempor</p>
83
+ <h3>Header three</h3>
84
+ <p>Incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
85
+ quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
86
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
87
+ cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
88
+ proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
89
+
90
+ </section>
91
+
92
+ </div><!-- /.mod-block -->
93
+
94
+ <div class="mod-share">
95
+ <header>
96
+ <h4>Share this</h4>
97
+ </header>
98
+ <section>
99
+ <ul class="mod share">
100
+ <li>
101
+ <script type="IN/Share" data-counter="right" data-url="http://google.com"></script>
102
+ </li>
103
+ <li>
104
+ <a href="https://twitter.com/share" class="twitter-share-button" data-url="http://google.com"></a>
105
+ </li>
106
+ <li>
107
+ <div class="g-plusone" data-size="medium" data-annotation="none" data-href="http://google.com"></div>
108
+ </li>
109
+ <li>
110
+ <div class="fb-like" data-href="http://google.com" data-send="false" data-layout="button_count" data-width="150" data-show-faces="false" data-action="recommend" data-font="arial"></div>
111
+ </li>
112
+ </ul>
113
+ </section>
114
+ </div><!-- .mod-share -->
115
+
116
+
117
+ <div class="mod-comments">
118
+
119
+ <header>
120
+ <h2>Comments</h2>
121
+ </header>
122
+
123
+ <section>
124
+ <ul>
125
+ <li>
126
+ <header>
127
+ <ul class="mod-meta">
128
+ <li class="author"><em>Author</em> Dil Ahdan</li>
129
+ <li class="date"><em>Published:</em>July 12, 2012</li>
130
+ </ul>
131
+ </header>
132
+ <section>
133
+ <blockquote>
134
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.</p>
135
+ </blockquote>
136
+ </section>
137
+ </li>
138
+
139
+ <li>
140
+ <header>
141
+ <ul class="mod-meta">
142
+ <li class="author"><em>Author</em> Dil Ahdan</li>
143
+ <li class="date"><em>Published:</em>July 12, 2012</li>
144
+ </ul>
145
+ </header>
146
+ <section>
147
+ <blockquote>
148
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.</p>
149
+ </blockquote>
150
+ </section>
151
+ </li>
152
+
153
+ <li>
154
+ <header>
155
+ <ul class="mod-meta">
156
+ <li class="author"><em>Author</em> Dil Ahdan</li>
157
+ <li class="date"><em>Published:</em>July 12, 2012</li>
158
+ </ul>
159
+ </header>
160
+ <section>
161
+ <blockquote>
162
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.</p>
163
+ </blockquote>
164
+ </section>
165
+ </li>
166
+
167
+ </ul>
168
+ </section>
169
+
170
+ </div><!-- /.mod-comments -->
171
+
172
+
173
+ <div class="mod-form">
174
+
175
+ <header>
176
+ <h2>Have your say</h2>
177
+ </header>
178
+
179
+ <section>
180
+ <form id="comment-form" action="/">
181
+ <fieldset>
182
+ <label for="name">Name <em>*</em></label>
183
+ <input id="name" name="name" type="text" placeholder="Name" data-validation-engine="validate[required]" />
184
+ </fieldset>
185
+
186
+ <fieldset>
187
+ <label for="email">Email <em>*</em></label>
188
+ <input id="email" name="email" type="email" placeholder="Email" data-validation-engine="validate[required,custom[email]]"/>
189
+ </fieldset>
190
+
191
+ <fieldset>
192
+ <label for="comments">Comments </label>
193
+ <textarea name="comments" id="comments" placeholder="Your message" data-validation-engine="validate[required]"></textarea>
194
+ </fieldset>
195
+
196
+ <fieldset class="submit-area">
197
+ <button type="submit">Submit</button>
198
+ <button type="reset" >Reset</button>
199
+ </fieldset>
200
+ </form>
201
+ </section>
202
+
203
+ </div><!-- /.mod-form -->
204
+
205
+
206
+ </section><!-- /.mod-content -->
207
+
208
+ <aside class="mod-sidebar">
209
+ <div class="widget">
210
+ <h4>Categories</h4>
211
+ <ul>
212
+ <li class="is-active"><a href="#">Link one</a></li>
213
+ <li><a href="#">Link two</a></li>
214
+ <li><a href="#">Link three</a></li>
215
+ </ul>
216
+ </div><!-- /.widget -->
217
+
218
+ <div class="widget">
219
+
220
+ <header>
221
+ <h4>Note</h4>
222
+ </header>
223
+ <section>
224
+ <p>Lorem ipsum dolor sit amet, consectetur adip*isicing elit, sed do eiusmod *tempor incididunt ut labore et dolore magna aliqua.</p>
225
+ </section>
226
+ <footer>
227
+ <p><a href="#" class="">Learn more</a></p>
228
+ </footer>
229
+
230
+ </div><!-- /.widget -->
231
+
232
+ <div class="widget">
233
+ <h4>Popular tags</h4>
234
+ <ul>
235
+ <li class="is-active"><a href="#">Link one</a></li>
236
+ <li><a href="#">Link two</a></li>
237
+ <li><a href="#">Link three</a></li>
238
+ </ul>
239
+ </div><!-- /.widget -->
240
+
241
+
242
+ </aside>
243
+
244
+ </article><!-- /.l-main-side -->
245
+
246
+ </div><!-- /#main-->
247
+
248
+ <footer class="mod-footer" id="footer"><!--#include virtual="inc/footer.html" --></footer>
249
+
250
+ </div><!-- /.container -->
251
+
252
+ <!--#include virtual="inc/js-bottom.html" -->
253
+
254
+ </body>
255
+ </html>