jekyll_reveal_generator 0.2.0.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +23 -0
  3. data/.gitignore +11 -0
  4. data/.rspec +3 -0
  5. data/Gemfile +4 -0
  6. data/README.md +80 -0
  7. data/Rakefile +22 -0
  8. data/bin/console +14 -0
  9. data/bin/rake +17 -0
  10. data/bin/setup +8 -0
  11. data/bin/thor +17 -0
  12. data/exe/jekyll_reveal_generator +4 -0
  13. data/exe/jrg +4 -0
  14. data/jekyll_reveal_generator.gemspec +34 -0
  15. data/lib/jekyll_reveal_generator/cli.rb +21 -0
  16. data/lib/jekyll_reveal_generator/create_new_presentation.rb +108 -0
  17. data/lib/jekyll_reveal_generator/create_slide.rb +82 -0
  18. data/lib/jekyll_reveal_generator/defaults.rb +56 -0
  19. data/lib/jekyll_reveal_generator/final_message.txt +34 -0
  20. data/lib/jekyll_reveal_generator/utils.rb +59 -0
  21. data/lib/jekyll_reveal_generator/version.rb +3 -0
  22. data/lib/jekyll_reveal_generator.rb +6 -0
  23. data/templates/presentation/.gitignore +4 -0
  24. data/templates/presentation/Gemfile +3 -0
  25. data/templates/presentation/Rakefile +11 -0
  26. data/templates/presentation/_config.yml +12 -0
  27. data/templates/presentation/_publish.yml.tt +3 -0
  28. data/templates/presentation/setup.sh +10 -0
  29. data/templates/presentation/source/_data/info.yml.tt +11 -0
  30. data/templates/presentation/source/_includes/slide_footer.html +4 -0
  31. data/templates/presentation/source/_includes/slide_header.html +4 -0
  32. data/templates/presentation/source/_includes/slides.html +3 -0
  33. data/templates/presentation/source/_layouts/printed_notes.html +22 -0
  34. data/templates/presentation/source/_layouts/slide.html +3 -0
  35. data/templates/presentation/source/_layouts/slideshow.html +37 -0
  36. data/templates/presentation/source/_slides/00-00-title-slide.md +37 -0
  37. data/templates/presentation/source/_slides/00-01-code-sample.html +39 -0
  38. data/templates/presentation/source/css/printed_styles.sass +23 -0
  39. data/templates/presentation/source/css/styles.sass +66 -0
  40. data/templates/presentation/source/css/zenburn.css +80 -0
  41. data/templates/presentation/source/index.html +3 -0
  42. data/templates/presentation/source/js/revealConfig.js +117 -0
  43. data/templates/presentation/source/notes.html +3 -0
  44. data/templates/slides/blank_slide.html.tt +7 -0
  45. data/templates/slides/blank_slide.markdown.tt +7 -0
  46. data/templates/slides/bullet_slide.html.tt +18 -0
  47. data/templates/slides/bullet_slide.markdown.tt +16 -0
  48. data/templates/slides/image_left_slide.html.tt +31 -0
  49. data/templates/slides/image_left_slide.markdown.tt +32 -0
  50. data/templates/slides/image_right_slide.html.tt +31 -0
  51. data/templates/slides/image_right_slide.markdown.tt +32 -0
  52. data/templates/slides/multi_slide.html.tt +19 -0
  53. data/templates/slides/multi_slide.markdown.tt +23 -0
  54. data/templates/slides/standard_slide.html.tt +10 -0
  55. data/templates/slides/standard_slide.markdown.tt +10 -0
  56. data/templates/slides/title_slide.html.tt +10 -0
  57. data/templates/slides/title_slide.markdown.tt +9 -0
  58. data/templates/slides/two_up_slide.html.tt +32 -0
  59. data/templates/slides/two_up_slide.markdown.tt +24 -0
  60. metadata +229 -0
@@ -0,0 +1,3 @@
1
+ url: "<%= init_options.publishing.site_url %>"
2
+ baseurl: "<%= init_options.publishing.base_url %>"
3
+ destination: "<%= init_options.publishing.destination %>"
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+ bundle binstub rake
8
+ bundle binstub jekyll
9
+
10
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,11 @@
1
+ title: "<%= init_options.title %>"
2
+ description: "<%= init_options.description %>"
3
+ author:
4
+ name: "<%= init_options.author.name %>"
5
+ email: "<%= init_options.author.email %>"
6
+ twitter: "<%= init_options.author.twitter %>"
7
+ github: "<%= init_options.author.github %>"
8
+ venue:
9
+ name: "<%= init_options.venue.name %>"
10
+ ssid: "<%= init_options.venue.ssid %>"
11
+ password: "<%= init_options.venue.password %>"
@@ -0,0 +1,4 @@
1
+
2
+ <footer class="slide-footer">
3
+ This should appear at the bottom of every slide
4
+ </footer>
@@ -0,0 +1,4 @@
1
+
2
+ <header class="slide-header">
3
+ this should appear at the top of every slide
4
+ </header>
@@ -0,0 +1,3 @@
1
+ {% for slide in site.slides %}
2
+ {{ slide.output }}
3
+ {% endfor %}
@@ -0,0 +1,22 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
6
+ <title>{{ site.data.info.title }}</title>
7
+ <link rel="stylesheet"
8
+ href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
9
+ <link rel="stylesheet" href="{{ 'css/printed_styles.css' | relative_url }}">
10
+ </head>
11
+ <body>
12
+ <main class="container" role="main">
13
+ {% include slides.html %}
14
+ </main>
15
+ <script src="//code.jquery.com/jquery-1.12.4.js"></script>
16
+ <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
17
+ <!-- <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.10.0/styles/default.min.css"> -->
18
+ <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/lib/css/zenburn.min.css">
19
+ <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.10.0/highlight.min.js"></script>
20
+ <script>hljs.initHighlightingOnLoad();</script>
21
+ </body>
22
+ </html>
@@ -0,0 +1,3 @@
1
+ <section>
2
+ {{ content }}
3
+ </section>
@@ -0,0 +1,37 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
6
+ <title>{{ site.data.info.title }}</title>
7
+ <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/css/reveal.min.css">
8
+ <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/css/theme/night.min.css">
9
+ <!-- Theme used for syntax highlighting of code -->
10
+ <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/lib/css/zenburn.min.css">
11
+ <link rel="stylesheet" href="{{ 'css/styles.css' | relative_url }}">
12
+ <!-- Printing and PDF exports -->
13
+ <script>
14
+ var link = document.createElement( 'link' );
15
+ link.rel = 'stylesheet';
16
+ link.type = 'text/css';
17
+ link.href = window.location.search.match( /print-pdf/gi ) ?
18
+ '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/css/print/pdf.css' :
19
+ '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/css/print/paper.css' ;
20
+ document.getElementsByTagName( 'head' )[0].appendChild( link );
21
+ </script>
22
+ </head>
23
+ <body>
24
+
25
+ <div class="reveal">
26
+ {% include slide_header.html %}
27
+ <div class="slides">
28
+ {% include slides.html %}
29
+ </div>
30
+ {% include slide_footer.html %}
31
+ </div>
32
+
33
+ <script src="//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/lib/js/head.min.js"></script>
34
+ <script src="//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/js/reveal.min.js"></script>
35
+ <script src="{{ 'js/revealConfig.js' | relative_url}}"></script>
36
+ </body>
37
+ </html>
@@ -0,0 +1,37 @@
1
+ ---
2
+ layout: slide
3
+ ---
4
+
5
+
6
+
7
+ <section>
8
+
9
+ # {{ site.data.info.title }}
10
+
11
+ ## {{ site.data.info.description }}
12
+
13
+
14
+ [printed notes]({{ '/notes.html' | relative_url }}){:target="_blank" rel="noopenner noreferrer"}
15
+
16
+
17
+ <aside class="notes">
18
+
19
+ <p>here are some speaker notes</p>
20
+
21
+ <h3>what do you THINK Of them??</h3>
22
+
23
+ </aside>
24
+
25
+ </section>
26
+
27
+
28
+ <section>
29
+
30
+ ## about me
31
+
32
+ * {{site.data.info.author.name}}
33
+ * {{site.data.info.author.email}}
34
+ * Github: {{site.data.info.author.github}}
35
+ * Twitter: @{{site.data.info.author.twitter}}
36
+
37
+ </section>
@@ -0,0 +1,39 @@
1
+ ---
2
+ layout: slide
3
+ ---
4
+
5
+ <section>
6
+
7
+ <h4>here's some inline code:</h4>
8
+
9
+ <p>
10
+ Mauris ultrices eros, in <code>cursus</code> turpis massa
11
+ tincidunt dui ut ornare lectus? <code>Vitae turpis massa</code>
12
+ sed elementum tempus egestas sed sed risus pretium quam vulputate
13
+ dignissim suspendisse in est ante?
14
+ </p>
15
+
16
+ </section>
17
+
18
+
19
+
20
+ <section>
21
+
22
+ <h4>minimal contents for <code>bs-config.js</code></h4>
23
+
24
+ <pre><code data-trim data-noescape class="javascript">module.exports = {
25
+ "ui": {
26
+ "port": 7001,
27
+ "weinre": {
28
+ "port": 8080
29
+ }
30
+ },
31
+ "files": [
32
+ <mark>'./_site/**/*'</mark>
33
+ ],
34
+ "server": './_site',
35
+ "port": 7000
36
+ };</code></pre>
37
+
38
+
39
+ </section>
@@ -0,0 +1,23 @@
1
+ ---
2
+ ---
3
+ /* The printed styles are dependent on bootstrap
4
+
5
+ /* make some space at the bottom of each slide and sub-slide
6
+ .container > section
7
+ margin-bottom: 80px
8
+ border-bottom: 2px solid #666
9
+ & > section
10
+ margin-bottom: 40px
11
+
12
+ /* do the clearfix on each section within the slides container
13
+ .container section:after
14
+ content: ""
15
+ display: table
16
+ clear: both
17
+
18
+ /* speaker notes as real asides
19
+ aside.notes
20
+ float: right
21
+ background-color: #ccc
22
+ padding: 5px
23
+ max-width: 30%
@@ -0,0 +1,66 @@
1
+ ---
2
+ ---
3
+
4
+ $blue: #2196f3
5
+ $gold: #e7ad52
6
+ $green: #7CB342
7
+
8
+ $banner_fg: #333
9
+ $banner_bg: #CCC
10
+ $controls_bg: aliceblue
11
+ $hljs_default: #dcdcdc
12
+ $header_text_shadow_color: #840b0b
13
+ $header_text_shadow_offset: 5px
14
+
15
+ $banner_height: 50px
16
+
17
+ =flex-row
18
+ display: flex
19
+ flex-direction: row
20
+ justify-content: space-between
21
+ align-items: center
22
+
23
+ =banner
24
+ width: 100%
25
+ text-align: center
26
+ color: $banner_fg
27
+ background-color: $banner_bg
28
+ height: $banner_height
29
+ padding: 0 20px
30
+ position: absolute
31
+ left: 0
32
+ font-size: 0.6em
33
+ +flex-row
34
+
35
+ .reveal
36
+ code
37
+ color: $green
38
+ &.hljs
39
+ color: $hljs_default
40
+ h1,h2,h3,h4,h5,h6
41
+ text-shadow: $header_text_shadow_offset $header_text_shadow_offset $header_text_shadow_offset $header_text_shadow_color
42
+ .slide-header
43
+ +banner
44
+ top: 0
45
+ .slide-footer
46
+ +banner
47
+ bottom: 0
48
+ .slide-number
49
+ bottom: inherit
50
+ top: 8px
51
+ .controls
52
+ background-color: $controls_bg
53
+
54
+ .blue
55
+ color: $blue
56
+ .gold
57
+ color: $gold
58
+ .green
59
+ color: $green
60
+
61
+ .two-up
62
+ min-width: 100%
63
+ +flex-row
64
+ justify-content: space-around
65
+ .left, .right
66
+ flex: 1
@@ -0,0 +1,80 @@
1
+ /*
2
+
3
+ Zenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>
4
+ based on dark.css by Ivan Sagalaev
5
+
6
+ */
7
+
8
+ .hljs {
9
+ display: block;
10
+ overflow-x: auto;
11
+ padding: 0.5em;
12
+ background: #3f3f3f;
13
+ color: #dcdcdc;
14
+ }
15
+
16
+ .hljs-keyword,
17
+ .hljs-selector-tag,
18
+ .hljs-tag {
19
+ color: #e3ceab;
20
+ }
21
+
22
+ .hljs-template-tag {
23
+ color: #dcdcdc;
24
+ }
25
+
26
+ .hljs-number {
27
+ color: #8cd0d3;
28
+ }
29
+
30
+ .hljs-variable,
31
+ .hljs-template-variable,
32
+ .hljs-attribute {
33
+ color: #efdcbc;
34
+ }
35
+
36
+ .hljs-literal {
37
+ color: #efefaf;
38
+ }
39
+
40
+ .hljs-subst {
41
+ color: #8f8f8f;
42
+ }
43
+
44
+ .hljs-title,
45
+ .hljs-name,
46
+ .hljs-selector-id,
47
+ .hljs-selector-class,
48
+ .hljs-section,
49
+ .hljs-type {
50
+ color: #efef8f;
51
+ }
52
+
53
+ .hljs-symbol,
54
+ .hljs-bullet,
55
+ .hljs-link {
56
+ color: #dca3a3;
57
+ }
58
+
59
+ .hljs-deletion,
60
+ .hljs-string,
61
+ .hljs-built_in,
62
+ .hljs-builtin-name {
63
+ color: #cc9393;
64
+ }
65
+
66
+ .hljs-addition,
67
+ .hljs-comment,
68
+ .hljs-quote,
69
+ .hljs-meta {
70
+ color: #7f9f7f;
71
+ }
72
+
73
+
74
+ .hljs-emphasis {
75
+ font-style: italic;
76
+ }
77
+
78
+ .hljs-strong {
79
+ font-weight: bold;
80
+ }
@@ -0,0 +1,3 @@
1
+ ---
2
+ layout: slideshow
3
+ ---
@@ -0,0 +1,117 @@
1
+ // Configuration for the Reveal Slideshow
2
+ // Default copied from https://github.com/hakimel/reveal.js#configuration
3
+ Reveal.initialize({
4
+
5
+ // Display controls in the bottom right corner
6
+ // controls: true,
7
+
8
+ // Display a presentation progress bar
9
+ // progress: true,
10
+
11
+ // Display the page number of the current slide
12
+ slideNumber: true,
13
+
14
+ // Push each slide change to the browser history
15
+ history: true,
16
+
17
+ // Enable keyboard shortcuts for navigation
18
+ // keyboard: true,
19
+
20
+ // Enable the slide overview mode
21
+ // overview: true,
22
+
23
+ // Vertical centering of slides
24
+ // center: true,
25
+
26
+ // Enables touch navigation on devices with touch input
27
+ // touch: true,
28
+
29
+ // Loop the presentation
30
+ // loop: false,
31
+
32
+ // Change the presentation direction to be RTL
33
+ // rtl: false,
34
+
35
+ // Randomizes the order of slides each time the presentation loads
36
+ // shuffle: false,
37
+
38
+ // Turns fragments on and off globally
39
+ // fragments: true,
40
+
41
+ // Flags if the presentation is running in an embedded mode,
42
+ // i.e. contained within a limited portion of the screen
43
+ // embedded: false,
44
+
45
+ // Flags if we should show a help overlay when the questionmark
46
+ // key is pressed
47
+ // help: true,
48
+
49
+ // Flags if speaker notes should be visible to all viewers
50
+ // showNotes: false,
51
+
52
+ // Number of milliseconds between automatically proceeding to the
53
+ // next slide, disabled when set to 0, this value can be overwritten
54
+ // by using a data-autoslide attribute on your slides
55
+ // autoSlide: 0,
56
+
57
+ // Stop auto-sliding after user input
58
+ // autoSlideStoppable: true,
59
+
60
+ // Use this method for navigation when auto-sliding
61
+ // autoSlideMethod: Reveal.navigateNext,
62
+
63
+ // Enable slide navigation via mouse wheel
64
+ // mouseWheel: false,
65
+
66
+ // Hides the address bar on mobile devices
67
+ // hideAddressBar: true,
68
+
69
+ // Opens links in an iframe preview overlay
70
+ // previewLinks: false,
71
+
72
+ // Transition style
73
+ transition: 'none', // none/fade/slide/convex/concave/zoom
74
+
75
+ // Transition speed
76
+ // transitionSpeed: 'default', // default/fast/slow
77
+
78
+ // Transition style for full page slide backgrounds
79
+ // backgroundTransition: 'fade', // none/fade/slide/convex/concave/zoom
80
+
81
+ // Number of slides away from the current that are visible
82
+ // viewDistance: 3,
83
+
84
+ // Parallax background image
85
+ // parallaxBackgroundImage: '', // e.g. "'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'"
86
+
87
+ // Parallax background size
88
+ // parallaxBackgroundSize: '', // CSS syntax, e.g. "2100px 900px"
89
+
90
+ // Number of pixels to move the parallax background per slide
91
+ // - Calculated automatically unless specified
92
+ // - Set to 0 to disable movement along an axis
93
+ // parallaxBackgroundHorizontal: null,
94
+ // parallaxBackgroundVertical: null
95
+
96
+ dependencies: [
97
+ // Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/
98
+ // { src: '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/lib/js/classList.js', condition: function() { return !document.body.classList; } },
99
+
100
+ // Interpret Markdown in <section> elements
101
+ // { src: '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
102
+ // { src: '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
103
+
104
+ // Syntax highlight for <code> elements
105
+ { src: '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
106
+
107
+ // Zoom in and out with Alt+click
108
+ { src: '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/plugin/zoom-js/zoom.js', async: true },
109
+
110
+ // Speaker notes
111
+ // { src: '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/plugin/notes/notes.js', async: true },
112
+
113
+ // MathJax
114
+ // { src: '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/plugin/math/math.js', async: true }
115
+ ]
116
+
117
+ });
@@ -0,0 +1,3 @@
1
+ ---
2
+ layout: printed_notes
3
+ ---
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: slide
3
+ title: "<%= slide_options.title %>"
4
+ slug: "<%= slide_options.slug %>"
5
+ group: <%= slide_options.group %>
6
+ sequence: <%= slide_options.sequence %>
7
+ ---
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: slide
3
+ title: "<%= slide_options.title %>"
4
+ slug: "<%= slide_options.slug %>"
5
+ group: <%= slide_options.group %>
6
+ sequence: <%= slide_options.sequence %>
7
+ ---
@@ -0,0 +1,18 @@
1
+ ---
2
+ layout: slide
3
+ title: "<%= slide_options.title %>"
4
+ slug: "<%= slide_options.slug %>"
5
+ group: <%= slide_options.group %>
6
+ sequence: <%= slide_options.sequence %>
7
+ ---
8
+
9
+
10
+ <h3>{{ page.title }}</h3>
11
+
12
+ <p>Text</p>
13
+
14
+ <ul>
15
+ <li>one</li>
16
+ <li>two</li>
17
+ <li>three</li>
18
+ </ul>
@@ -0,0 +1,16 @@
1
+ ---
2
+ layout: slide
3
+ title: "<%= slide_options.title %>"
4
+ slug: "<%= slide_options.slug %>"
5
+ group: <%= slide_options.group %>
6
+ sequence: <%= slide_options.sequence %>
7
+ ---
8
+
9
+
10
+ ### {{ page.title }}
11
+
12
+ Text
13
+
14
+ * one
15
+ * two
16
+ * three
@@ -0,0 +1,31 @@
1
+ ---
2
+ layout: slide
3
+ title: "<%= slide_options.title %>"
4
+ slug: "<%= slide_options.slug %>"
5
+ group: <%= slide_options.group %>
6
+ sequence: <%= slide_options.sequence %>
7
+ image:
8
+ src: "http://fillmurray.com/200/300"
9
+ alt: "fill murray 200x300"
10
+ title: "It's Fill Murray! 200 by 300"
11
+
12
+ ---
13
+
14
+
15
+ <h3>{{ page.title }}</h3>
16
+
17
+ <div class="two-up">
18
+ <div class="left">
19
+ <figure>
20
+ <img alt="{{ page.image.alt }}" src="{{ page.image.src }}" title="{{ page.image.title }}"/>
21
+ <figcaption><p>{{ page.image.title }}</p></figcaption>
22
+ </figure>
23
+ </div>
24
+ <div class="right">
25
+ <ul>
26
+ <li>text</li>
27
+ <li>text</li>
28
+ <li>text</li>
29
+ </ul>
30
+ </div>
31
+ </div>
@@ -0,0 +1,32 @@
1
+ ---
2
+ layout: slide
3
+ title: "<%= slide_options.title %>"
4
+ slug: "<%= slide_options.slug %>"
5
+ group: <%= slide_options.group %>
6
+ sequence: <%= slide_options.sequence %>
7
+ image:
8
+ src: "http://fillmurray.com/200/300"
9
+ alt: "fill murray 200x300"
10
+ title: "It's Fill Murray! 200 by 300"
11
+
12
+ ---
13
+
14
+
15
+ ### {{ page.title }}
16
+
17
+ <div class="two-up">
18
+ <div class="left">
19
+
20
+ ![{{ page.image.alt }}]({{ page.image.src }} "{{page.image.title }}")
21
+
22
+ {{ page.image.title }}
23
+
24
+ </div>
25
+ <div class="right">
26
+
27
+ * one
28
+ * two
29
+ * three
30
+
31
+ </div>
32
+ </div>
@@ -0,0 +1,31 @@
1
+ ---
2
+ layout: slide
3
+ title: "<%= slide_options.title %>"
4
+ slug: "<%= slide_options.slug %>"
5
+ group: <%= slide_options.group %>
6
+ sequence: <%= slide_options.sequence %>
7
+ image:
8
+ src: "http://fillmurray.com/g/200/300"
9
+ alt: "fill murray 200x300"
10
+ title: "It's Fill Murray! 200 by 300"
11
+
12
+ ---
13
+
14
+
15
+ <h3>{{ page.title }}</h3>
16
+
17
+ <div class="two-up">
18
+ <div class="left">
19
+ <ul>
20
+ <li>text</li>
21
+ <li>text</li>
22
+ <li>text</li>
23
+ </ul>
24
+ </div>
25
+ <div class="right">
26
+ <figure>
27
+ <img alt="{{ page.image.alt }}" src="{{ page.image.src }}" title="{{ page.image.title }}"/>
28
+ <figcaption><p>{{ page.image.title }}</p></figcaption>
29
+ </figure>
30
+ </div>
31
+ </div>
@@ -0,0 +1,32 @@
1
+ ---
2
+ layout: slide
3
+ title: "<%= slide_options.title %>"
4
+ slug: "<%= slide_options.slug %>"
5
+ group: <%= slide_options.group %>
6
+ sequence: <%= slide_options.sequence %>
7
+ image:
8
+ src: "http://fillmurray.com/g/200/300"
9
+ alt: "fill murray 200x300"
10
+ title: "It's Fill Murray! 200 by 300"
11
+
12
+ ---
13
+
14
+
15
+ ### {{ page.title }}
16
+
17
+ <div class="two-up">
18
+ <div class="left">
19
+
20
+ * one
21
+ * two
22
+ * three
23
+
24
+ </div>
25
+ <div class="right">
26
+
27
+ ![{{ page.image.alt }}]({{ page.image.src}} "{{page.image.title }}")
28
+
29
+ {{page.image.title}}
30
+
31
+ </div>
32
+ </div>