best 0.0.1 → 0.0.2

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 (128) hide show
  1. data/README.md +19 -0
  2. data/framework/best/best.rb +32 -0
  3. data/framework/best/stylesheets/_best.scss +15 -0
  4. data/framework/best/stylesheets/best/_button.scss +49 -0
  5. data/framework/best/stylesheets/best/_effects.scss +5 -0
  6. data/framework/best/stylesheets/best/_form.scss +6 -0
  7. data/framework/best/stylesheets/best/_layout.scss +7 -0
  8. data/framework/best/stylesheets/best/_navigation.scss +8 -0
  9. data/framework/best/stylesheets/best/_reset.scss +4 -0
  10. data/framework/best/stylesheets/best/_utilities.scss +4 -0
  11. data/framework/best/stylesheets/best/effects/_iterative.scss +15 -0
  12. data/framework/best/stylesheets/best/effects/_keyframes.scss +121 -0
  13. data/framework/best/stylesheets/best/form/_form-layout.scss +120 -0
  14. data/framework/best/stylesheets/best/form/_form-style.scss +41 -0
  15. data/framework/best/stylesheets/best/form/_form-validation.scss +25 -0
  16. data/framework/best/stylesheets/best/layout/_dl-horizontal.scss +32 -0
  17. data/framework/best/stylesheets/best/layout/_equal-heights.scss +70 -0
  18. data/framework/best/stylesheets/best/layout/_layout-center.scss +20 -0
  19. data/framework/best/stylesheets/best/layout/_mediablock.scss +34 -0
  20. data/framework/best/stylesheets/best/navigation/_navigation-breadcrumb.scss +59 -0
  21. data/framework/best/stylesheets/best/navigation/_navigation-dropdown.scss +39 -0
  22. data/framework/best/stylesheets/best/navigation/_navigation-horizontal.scss +34 -0
  23. data/framework/best/stylesheets/best/navigation/_navigation.scss +28 -0
  24. data/framework/best/stylesheets/best/navigation/_tinynav.scss +18 -0
  25. data/framework/best/stylesheets/best/reset/_normalize.scss +376 -0
  26. data/framework/best/stylesheets/best/utilities/_em.scss +6 -0
  27. data/template/breakpoints.html +89 -0
  28. data/template/codekit-config.json +1142 -0
  29. data/template/colors.html +115 -0
  30. data/template/components/custom-select/arrow.gif +0 -0
  31. data/template/components/custom-select/custom-select.css +23 -0
  32. data/template/components/custom-select/custom-select.html +31 -0
  33. data/template/components/custom-select/custom-select.js +9 -0
  34. data/template/components/custom-select/customSelect.jquery.js +56 -0
  35. data/template/components/custom-select/customSelect.jquery.min.js +1 -0
  36. data/template/components/dropdown/dropdown.css +54 -0
  37. data/template/components/dropdown/dropdown.html +34 -0
  38. data/template/components/dropdown/dropdown.js +50 -0
  39. data/template/components/example component/component.css +5 -0
  40. data/template/components/example component/component.html +13 -0
  41. data/template/components/example component/component.js b/data/template/components/example → component/component.js +0 -0
  42. data/template/components/fancybox/CHANGELOG.md +115 -0
  43. data/template/components/fancybox/README.md +217 -0
  44. data/template/components/fancybox/component.json +8 -0
  45. data/template/components/fancybox/demo/1_b.jpg +0 -0
  46. data/template/components/fancybox/demo/1_s.jpg +0 -0
  47. data/template/components/fancybox/demo/2_b.jpg +0 -0
  48. data/template/components/fancybox/demo/2_s.jpg +0 -0
  49. data/template/components/fancybox/demo/3_b.jpg +0 -0
  50. data/template/components/fancybox/demo/3_s.jpg +0 -0
  51. data/template/components/fancybox/demo/4_b.jpg +0 -0
  52. data/template/components/fancybox/demo/4_s.jpg +0 -0
  53. data/template/components/fancybox/demo/5_b.jpg +0 -0
  54. data/template/components/fancybox/demo/5_s.jpg +0 -0
  55. data/template/components/fancybox/demo/ajax.txt +15 -0
  56. data/template/components/fancybox/demo/iframe.html +26 -0
  57. data/template/components/fancybox/demo/index.html +307 -0
  58. data/template/components/fancybox/lib/jquery-1.8.2.min.js +2 -0
  59. data/template/components/fancybox/lib/jquery.mousewheel-3.0.6.pack.js +13 -0
  60. data/template/components/fancybox/source/blank.gif +0 -0
  61. data/template/components/fancybox/source/fancybox_loading.gif +0 -0
  62. data/template/components/fancybox/source/fancybox_overlay.png +0 -0
  63. data/template/components/fancybox/source/fancybox_sprite.png +0 -0
  64. data/template/components/fancybox/source/helpers/fancybox_buttons.png +0 -0
  65. data/template/components/fancybox/source/helpers/jquery.fancybox-buttons.css +96 -0
  66. data/template/components/fancybox/source/helpers/jquery.fancybox-buttons.js +121 -0
  67. data/template/components/fancybox/source/helpers/jquery.fancybox-media.js +196 -0
  68. data/template/components/fancybox/source/helpers/jquery.fancybox-thumbs.css +54 -0
  69. data/template/components/fancybox/source/helpers/jquery.fancybox-thumbs.js +162 -0
  70. data/template/components/fancybox/source/jquery.fancybox.css +249 -0
  71. data/template/components/fancybox/source/jquery.fancybox.js +1985 -0
  72. data/template/components/fancybox/source/jquery.fancybox.pack.js +45 -0
  73. data/template/components/jquery/component.json +14 -0
  74. data/template/components/jquery/composer.json +23 -0
  75. data/template/components/jquery/jquery.js +9472 -0
  76. data/template/components/jquery/jquery.min.js +2 -0
  77. data/template/config.rb +25 -0
  78. data/template/css/style.css +1094 -0
  79. data/template/fancybox.html +118 -0
  80. data/template/forms.html +132 -0
  81. data/template/grid.html +122 -0
  82. data/template/index.html +116 -0
  83. data/template/jade/--- from cybex as inspiration/keyvisuals.jade +37 -0
  84. data/template/jade/--- from cybex as inspiration/m-carousel.jade +37 -0
  85. data/template/jade/--- from cybex as inspiration/m-faq.jade +23 -0
  86. data/template/jade/--- from cybex as inspiration/m-keyvisual.jade +55 -0
  87. data/template/jade/--- from cybex as inspiration/m-search.jade +3 -0
  88. data/template/jade/--- from cybex as inspiration/m-slideshow.jade +12 -0
  89. data/template/jade/--- from cybex as inspiration/m-social.jade +10 -0
  90. data/template/jade/breakpoints.jade +26 -0
  91. data/template/jade/colors.jade +32 -0
  92. data/template/jade/fancybox.jade +34 -0
  93. data/template/jade/forms.jade +39 -0
  94. data/template/jade/grid.jade +36 -0
  95. data/template/jade/includes/module-development.jade +1 -0
  96. data/template/jade/includes/nav-development.jade +27 -0
  97. data/template/jade/includes/nav-meta.jade +6 -0
  98. data/template/jade/includes/nav-primary.jade +5 -0
  99. data/template/jade/includes/nav-secondary.jade +18 -0
  100. data/template/jade/index.jade +33 -0
  101. data/template/jade/layouts/layout-footer.jade +5 -0
  102. data/template/jade/layouts/layout-header.jade +3 -0
  103. data/template/jade/layouts/layout-html5.jade +26 -0
  104. data/template/jade/layouts/layout-page.jade +40 -0
  105. data/template/jade/mixins/form-helpers.jade +10 -0
  106. data/template/jade/mixins/mixin-menu.jade +3 -0
  107. data/template/jade/typography.jade +38 -0
  108. data/template/js/footer.js +16 -0
  109. data/template/js/footer.min.js +3 -0
  110. data/template/js/header.js +1 -0
  111. data/template/js/header.min.js +3 -0
  112. data/template/js/main.js +18 -0
  113. data/template/js/main.min.js +1 -0
  114. data/template/js/vendor/jquery.flexslider.min.js +6 -0
  115. data/template/js/vendor/modernizr-custom.js +4 -0
  116. data/template/readme.md +6 -0
  117. data/template/sass/_base.scss +66 -0
  118. data/template/sass/_config.scss +58 -0
  119. data/template/sass/_labs.scss +4 -0
  120. data/template/sass/_layout.scss +26 -0
  121. data/template/sass/_m-breakpoints.scss +42 -0
  122. data/template/sass/_m-colors.scss +39 -0
  123. data/template/sass/_m-navigation.scss +43 -0
  124. data/template/sass/_m-offcanvas.scss +60 -0
  125. data/template/sass/_module.scss +63 -0
  126. data/template/sass/style.scss +38 -0
  127. data/template/typography.html +120 -0
  128. metadata +130 -3
@@ -0,0 +1,37 @@
1
+
2
+ block vars
3
+ - var bodyClass="l-has-sidebar"
4
+ - var title = "Keyvisuals"
5
+
6
+ extends layouts/layout-page
7
+
8
+ include mixins/m-keyvisual
9
+ include mixins/m-warning
10
+
11
+ prepend head
12
+ title Keyvisuals
13
+
14
+ block header
15
+ include layouts/layout-header
16
+
17
+ block main
18
+ .l-primary
19
+ article.article
20
+ hgroup
21
+ h1 KEYVISUAL modules
22
+ h2 Just for showing off. Here are the four different variants:
23
+
24
+ // .m-keyvisual-header arguments(title, subtitle, subtitle2, img, href, linkText)
25
+ mixin m-keyvisual-futura('Cybex Sirona', 'Eine revolutionäre perspektive', 'Über 80% weniger Risiko beim Frontalaufprall<br>ece r-44/04, gr. 0+/I (0-18 kg)', 'Sicher rückwärts ab geburt bis 18 kg (ca. 4 jahre)', 'img/content/header-sirona.jpg', 'http://google.com', 'Jetzt erleben', 'left')
26
+ mixin m-keyvisual-header('Let me ride', 'Buggys und Kinderwagen von Cybex', 'Von geburt bis 25kg', 'img/content/header-blue.jpg', 'http://google.com', 'this is on my button', 'left')
27
+ mixin m-keyvisual-header('Let me ride', 'Buggys und Kinderwagen von Cybex', 'Von geburt bis 25kg', 'img/content/header-retro.jpg', 'http://google.com', 'this is on my button', 'center')
28
+ mixin m-keyvisual-header('Let me ride', 'Buggys und Kinderwagen von Cybex', 'Von geburt bis 25kg', 'img/content/header-bw.jpg', 'http://google.com', 'this is on my button', 'right')
29
+
30
+ // m-keyvisual-center arguments(title, subtitle, img)
31
+ mixin m-keyvisual-center('This is my title', 'and this is my subtitle', 'img/content/header-retro.jpg')
32
+
33
+ .l-secondary
34
+ include includes/nav-secondary.jade
35
+
36
+ block footer
37
+
@@ -0,0 +1,37 @@
1
+ .m-carousel.col-set
2
+ .inner
3
+
4
+ #touchcarousel.slider.touchcarousel.minimal-light
5
+ ul.touchcarousel-container
6
+ - var item1 = { title: 'A matter of trust', url: '#', width: 1, img: 'img/content/a-matter-of-trust.jpg' }
7
+ - var item2 = { title: 'Security theme of the week', url: '#', text: 'lorem lorem lorem', width: 2, img: 'img/content/falling-guy.jpg' }
8
+ - var item3 = { title: 'Cybex video', url: 'http://www.youtube.com/embed/hFXiCzp7sqg?autoplay=1', type:'fancybox', text: 'lorem lorem lorem', width: 2, imgposition: 'right', img: 'img/content/laptop.jpg' }
9
+ - var item4 = { title: 'Cybex video', url: 'http://www.youtube.com/embed/hFXiCzp7sqg?autoplay=1', type:'fancybox', text: 'lorem lorem lorem', width: 2, img: 'img/content/laptop-left.jpg' }
10
+ - var item5 = { title: 'Something more', url: '#', width: 1, img: 'img/content/a-matter-of-trust.jpg' }
11
+ - var item6 = { title: 'Skyfall is more', url: '#', width: 1, img: 'img/content/a-matter-of-trust.jpg' }
12
+
13
+ - var items = [item1, item2, item3, item4, item5, item6]
14
+ each item in items
15
+ li(class="item width#{item.width} align-#{item.imgposition} touchcarousel-item")
16
+ - if (item.type == 'fancybox')
17
+ a(href="#{item.url}",class="fancybox fancybox.iframe")
18
+ .media
19
+ img(src="#{item.img}", alt="#{item.title}")
20
+ - if (item.width == 2)
21
+ .entry
22
+ h2= item.title
23
+ p= item.text
24
+ - else
25
+ a(href="#{item.url}")
26
+ .media
27
+ img(src="#{item.img}", alt="#{item.title}")
28
+ - if (item.width == 2)
29
+ .entry
30
+ h2= item.title
31
+ p= item.text
32
+
33
+ //- .controls
34
+ //- a(href="").prev-page Prev page
35
+ //- //- a(href="#").prev-slide Prev slide
36
+ //- //- a(href="#").next-slide Next slide
37
+ //- a(href="").next-page Next page
@@ -0,0 +1,23 @@
1
+ .m-faq
2
+ h2 FAQ
3
+ dl.accordion
4
+ dt.q: a(href="#") Darf ich Aton inklusive der Basisstation auch bei aktiviertem Seitenairbag verwenden?
5
+ dd.a: p This is the answer!
6
+ dt.q: a(href="#") Mein Fahrzeug verfügt über ein Staufach im Fußraum des Fahrzeuges. Darf ich die Aton Basisstation trotzdem verwenden?
7
+ dd.a: p This is the answer!
8
+ dt.q: a(href="#") Was mache ich, wenn der Kopf meines Babys während der Fahrt auf die Brust fällt, obwohl die Aton Babyschale der Markierung nach waagerecht im Fahrzeug steht?
9
+ dd.a: p This is the answer!
10
+ dt.q: a(href="#") Kann ich den Kindersitz auch im Flugzeug verwenden?
11
+ dd.a: p This is the answer!
12
+ dt.q: a(href="#") Wie verstelle ich das integrierte Cabrio-Sonnendach?
13
+ dd.a: p This is the answer!
14
+ dt.q: a(href="#") Darf ich die Schale auf dem Beifahrersitz anbringen?
15
+ dd.a: p This is the answer!
16
+ dt.q: a(href="#") Kann das Kind auch in Fahrtrichtung im Auto sitzen?
17
+ dd.a: p This is the answer!
18
+ dt.q: a(href="#") Darf mein Kind in der Schale z.B. auch im Haushalt schlafen?
19
+ dd.a: p This is the answer!
20
+ dt.q: a(href="#") Mit welchen Buggys oder Kinderwagen darf ich den Aton verwenden?
21
+ dd.a: p This is the answer!
22
+ dt.q: a(href="#") Kann ich den Sitz nach einem Unfall weiterverwenden?
23
+ dd.a: p This is the answer!
@@ -0,0 +1,55 @@
1
+ mixin m-keyvisual-center(title, subtitle, img)
2
+ - title = title || 'Title'
3
+ - subtitle = subtitle || 'Subtitle'
4
+ - img = img || 'img/content/04-sicherheitscenter1.jpg'
5
+
6
+ .m-keyvisual.keyvisual--center
7
+ img(src="#{img}").rsImg
8
+ hgroup
9
+ .inner
10
+ h1.title #{title}
11
+ br
12
+ h2.subtitle #{subtitle}
13
+
14
+
15
+ mixin m-keyvisual-header(title, subtitle, subtitle2, img, href, linkText, align)
16
+ - title = title || 'Title'
17
+ - subtitle = subtitle || 'Subtitle'
18
+ - subtitle2 = subtitle2 || 'Subtitle 2'
19
+ - img = img || 'img/content/header-bw.jpg'
20
+ - href = href || '#'
21
+ - linkText = linkText || 'Jetzt erfahren'
22
+ - align = align || 'left'
23
+
24
+ .m-keyvisual.keyvisual--header.keyvisual--textbg.keyvisual--textbg-serif(class="keyvisual--align-#{align}")
25
+ img(src="#{img}")
26
+ hgroup
27
+ .inner
28
+ h1.title #{title}
29
+ br
30
+ h2.subtitle #{subtitle}
31
+ br
32
+ h2.subtitle.subtitle2 #{subtitle2}
33
+ br
34
+ a.button.button-arrow.button-bigger(href="#{href}") #{linkText}
35
+
36
+
37
+ mixin m-keyvisual-futura(title, subtitle, subtitle2, bubble, img, href, linkText, align)
38
+ - title = title || 'Title'
39
+ - subtitle = subtitle || 'Subtitle'
40
+ - subtitle2 = subtitle2 || 'Subtitle 2'
41
+ - bubble = bubble || 'This is in the bubble'
42
+ - img = img || 'img/content/header-sirona.jpg'
43
+ - href = href || '#'
44
+ - linkText = linkText || 'Jetzt erfahren'
45
+ - align = align || 'left'
46
+
47
+ .m-keyvisual.keyvisual--header.keyvisual--futura(class="keyvisual--align-#{align}")
48
+ img(src="#{img}")
49
+ hgroup
50
+ .inner
51
+ .bubble !{bubble}
52
+ h1.title #{title}
53
+ h2.subtitle #{subtitle}
54
+ h2.subtitle.subtitle2 !{subtitle2}
55
+ a.button.button-arrow.button-bigger(href="#{href}") #{linkText}
@@ -0,0 +1,3 @@
1
+ form.m-search(action="search.html")
2
+ input(type="search", placeholder="Suchbegriff").search-text
3
+ input(type="submit", value="Suchen")
@@ -0,0 +1,12 @@
1
+ .m-slideshow.m-slideshow-productdetail.royalSlider.contentSlider.rsDefault
2
+ .slide
3
+ img(src="img/content/callisto-slide.png", alt="").rsImg
4
+ .slide
5
+ img(src="img/content/callisto-slide2.png", alt="").rsImg
6
+ .slide
7
+ img(src="img/content/callisto-slide2.png", alt="").rsImg
8
+ .m-slideshow-navigation
9
+ p
10
+ strong Images
11
+ br
12
+ span.title 1/1
@@ -0,0 +1,10 @@
1
+ nav.m-menu.m-menu-social
2
+ ul
3
+ li
4
+ a(href="#").icon-facebook-white Facebook
5
+ li
6
+ a(href="#").icon-pinterest-white Pinterest
7
+ li
8
+ a(href="#").icon-google-white Google+
9
+ li
10
+ a(href="#").icon-youtube-white Youtube
@@ -0,0 +1,26 @@
1
+
2
+ block vars
3
+ - var title = "Breakpoints"
4
+ - var bodyClass = "page-" + title.toLowerCase()
5
+
6
+ extends layouts/layout-page
7
+
8
+ prepend head
9
+ title #{title}
10
+
11
+ block header
12
+ include layouts/layout-header
13
+
14
+ block main
15
+ .l-primary
16
+ article.article
17
+ h1 #{title}
18
+ p Which breakpoints are we using and why?
19
+
20
+ .m-breakpoints
21
+ .breakpoint--small I'm the small breakpoint
22
+ .breakpoint--medium I'm the medium breakpoint
23
+ .breakpoint--large I'm the large breakpoint
24
+
25
+ block footer
26
+ include layouts/layout-footer.jade
@@ -0,0 +1,32 @@
1
+
2
+ block vars
3
+ - var title = "Colors"
4
+ - var bodyClass = "page-" + title.toLowerCase()
5
+
6
+ extends layouts/layout-page
7
+
8
+ prepend head
9
+ title #{title}
10
+
11
+ block header
12
+ include layouts/layout-header
13
+
14
+ block main
15
+ .l-primary
16
+ article.article
17
+ h1 #{title}
18
+ p Let's see the default color values:
19
+ .color.color--white $white
20
+ .color.color--lightgray $lightgray
21
+ .color.color--gray $gray
22
+ .color.color--darkgray $darkgray
23
+ .color.color--black $black
24
+ .color.color--anchor-color $anchor-color
25
+ .color.color--anchor-color-hover $anchor-color-hover
26
+ .color.color--anchor-color-active $anchor-color-active
27
+
28
+ .l-secondary
29
+ include includes/nav-secondary.jade
30
+
31
+ block footer
32
+ //include layouts/layout-footer.jade
@@ -0,0 +1,34 @@
1
+
2
+ block vars
3
+ - var title = "Fancybox"
4
+ - var bodyClass = "page-" + title.toLowerCase()
5
+
6
+ extends layouts/layout-page
7
+
8
+ prepend head
9
+ title #{title}
10
+
11
+ block header
12
+ include layouts/layout-header
13
+
14
+ block main
15
+ .l-primary
16
+ article.article
17
+ h1 #{title}
18
+ p In order to use the Fancybox plugin you have to:
19
+ ol
20
+ li Update the component using Bower
21
+ li consider if you need any of the extended fancybox helpers (thumbnails etc.)
22
+ li Import the relevant CSS file(s) in <code>style.scss</code>
23
+ li Import the relevant script file(s) in <code>footer.js</code>
24
+ li Initialize the plugin in <code>main.js</code>
25
+ p
26
+ a(href="#fancybox").fancybox-test Click me to test the Fancybox plugin
27
+ #fancybox
28
+ p This is inside the #fancybox element
29
+
30
+ .l-secondary
31
+ include includes/nav-secondary.jade
32
+
33
+ block footer
34
+ //include layouts/layout-footer.jade
@@ -0,0 +1,39 @@
1
+ include mixins/form-helpers
2
+
3
+ block vars
4
+ - var title = "Forms"
5
+ - var bodyClass = "page-" + title.toLowerCase()
6
+
7
+ extends layouts/layout-page
8
+
9
+ prepend head
10
+ title #{title}
11
+
12
+ block header
13
+ include layouts/layout-header
14
+
15
+ block main
16
+ .l-primary
17
+ article.article
18
+ h1 #{title}
19
+ p Here we'll show default form styling and markup
20
+
21
+ form.m-test-form
22
+ .field.field-type-select
23
+ label
24
+ select
25
+ option(value="") Sie sind…
26
+ option(value="") option2
27
+ option(value="") option3
28
+
29
+ mixin field('text', 'name', 'Username')
30
+ mixin field('password', 'password', 'Password')
31
+ mixin field('textarea', 'message', 'Message')
32
+ mixin field('submit', 'submit', 'Submit')
33
+
34
+
35
+ .l-secondary
36
+ include includes/nav-secondary.jade
37
+
38
+ block footer
39
+ //include layouts/layout-footer.jade
@@ -0,0 +1,36 @@
1
+
2
+ block vars
3
+ - var title = "Grid"
4
+ - var bodyClass = "page-" + title.toLowerCase()
5
+
6
+ extends layouts/layout-page
7
+
8
+ prepend head
9
+ title #{title}
10
+
11
+ block header
12
+ include layouts/layout-header
13
+
14
+ block main
15
+ .l-primary
16
+ article.article
17
+ h1 #{title}
18
+ p Grid system explained.
19
+ p This is the <a href="http://oocss.org/grids_docs.html">AG test</a> build on a 10 column <a href="susy.oddbird.net">Susy</a> grid.
20
+
21
+ .m-gridtest
22
+ .ag1: p 2of10
23
+ .ag2: p 6of10
24
+ .ag4: p 3of6
25
+ .ag5: p 3of6 + omega
26
+
27
+ .ag6: p 2of6
28
+ .ag7: p 4of6 + omega
29
+ .ag8: p 2of4
30
+ .ag9: p 2of4 + omega
31
+ .ag10: p 4of4 +omega
32
+ .ag3: p 2of10 + omega
33
+ .ag11: p clear
34
+
35
+ block footer
36
+ include layouts/layout-footer.jade
@@ -0,0 +1 @@
1
+ h1 Development
@@ -0,0 +1,27 @@
1
+ nav.m-nav-development
2
+ ul
3
+ li.category Base
4
+ ul
5
+ li: mixin menu-item('Colors', 'colors.html')
6
+ li: mixin menu-item('Typography', 'typography.html')
7
+ li: mixin menu-item('Forms', 'forms.html')
8
+ li.category Layout
9
+ ul
10
+ li: mixin menu-item('Grid', 'grid.html')
11
+ li: mixin menu-item('Breakpoints', 'breakpoints.html')
12
+ li.category Components
13
+ ul
14
+ li: mixin menu-item('Fancybox', 'fancybox.html')
15
+ li: mixin menu-item('Dropdown', 'components/dropdown/dropdown.html')
16
+
17
+
18
+ //li.expanded
19
+ a(href="#") Seite Level 1
20
+ ul
21
+ li
22
+ a(href="#") Seite Level 2
23
+ mixin menu-item('Seite Level 2', '#')
24
+ mixin menu-item('Seite Level 2', '#')
25
+ mixin menu-item('Seite Level 2', '#')
26
+ mixin menu-item('Seite Level 2', '#')
27
+ mixin menu-item('Seite Level 2', '#')
@@ -0,0 +1,6 @@
1
+ nav.m-menu.m-menu-meta
2
+ ul
3
+ mixin menu-item('Link', 'index.html')
4
+ mixin menu-item('Link', 'index.html')
5
+ mixin menu-item('Link', 'index.html')
6
+ mixin menu-item('Link', 'index.html')
@@ -0,0 +1,5 @@
1
+ nav.m-nav-primary
2
+ ul
3
+ li: a(href="index.html")#bestLink Best
4
+ //li: mixin menu-item('Best', 'index.html')
5
+ li.sidebarToggleContainer: a(href="#")#sidebarToggle Toggle sidebar
@@ -0,0 +1,18 @@
1
+ nav.m-menu.m-menu-secondary
2
+ //ul
3
+ li.category Base
4
+ ul
5
+ li: mixin menu-item('Colors', 'colors.html')
6
+ li: mixin menu-item('Typography', 'typography.html')
7
+ li: mixin menu-item('Forms', 'forms.html')
8
+ li.category Layout
9
+ ul
10
+ li: mixin menu-item('Grid', 'grid.html')
11
+
12
+
13
+ li.expanded
14
+ a(href="#") Seite Level 1
15
+ ul
16
+ li
17
+ a(href="#") Seite Level 2
18
+
@@ -0,0 +1,33 @@
1
+
2
+ block vars
3
+ - var title = "Index"
4
+ - var bodyClass = "page-" + title.toLowerCase()
5
+
6
+ extends layouts/layout-page
7
+
8
+ prepend head
9
+ title #{title}
10
+
11
+ block header
12
+ include layouts/layout-header
13
+
14
+ block main
15
+ .l-primary
16
+ article.article
17
+ h1 #{title} of the Best
18
+ p Follow the white rabbit. This is a work-in-progress.
19
+ p: strong Todo:
20
+ ul
21
+ li Showcase typgraphy
22
+ li Responsive typo
23
+ li Test grid system
24
+ li Test different responsive navigation patterns
25
+ li Bulletproof Susy
26
+
27
+ p: img(src="http://placekitten.com/g/1000/160")
28
+
29
+ .l-secondary
30
+ include includes/nav-secondary.jade
31
+
32
+ block footer
33
+ //include layouts/layout-footer.jade