# HG changeset patch # User Yasutaka Higa # Date 1416448433 -32400 # Node ID d241737726917949540db9560b59840b2851f673 # Parent eb5b2d692b34a19aa3c2e22d7b5021e1160e176b Support author profile diff -r eb5b2d692b34 -r d24173772691 cr.txt --- a/cr.txt Sat Nov 15 17:26:53 2014 +0900 +++ b/cr.txt Thu Nov 20 10:53:53 2014 +0900 @@ -2,16 +2,16 @@ # - Shower by Vadim Makeev (aka pepelsbey); see https://github.com/pepelsbey/shower # - (Note: Template package still in development, Beta Vesion) # -# Change as desired/needed +# Change as desired/needed # # Configured to use the following headers in slides.html.erb: -# +# # author: Your Name Here +# profile: Your Profile Here # title: Your Slide Show Title Here -# cover: Your Slide Show Cover Image Here # # Questions? Comments? -# Send them along to the Free Web Slide Show Alternatives (S5, S6, S9 And Friends) Forum/Mailing List. +# Send them along to the Free Web Slide Show Alternatives (S5, S6, S9 And Friends) Forum/Mailing List. # http://groups.google.com/group/webslideshow __file__.html slides.html.erb diff -r eb5b2d692b34 -r d24173772691 slides.html.erb --- a/slides.html.erb Sat Nov 15 17:26:53 2014 +0900 +++ b/slides.html.erb Thu Nov 20 10:53:53 2014 +0900 @@ -18,7 +18,8 @@

<%= @headers['title'] %>

-

<%= @headers['author'] %>

+

<%= @headers['author'] %>

+

<%= @headers['profile'] %>

@@ -36,10 +37,6 @@ <% end %> - diff -r eb5b2d692b34 -r d24173772691 themes/ribbon/styles/style.css --- a/themes/ribbon/styles/style.css Sat Nov 15 17:26:53 2014 +0900 +++ b/themes/ribbon/styles/style.css Thu Nov 20 10:53:53 2014 +0900 @@ -183,10 +183,18 @@ text-align:center; font-size:84px; } -.slide.cover H3 { +.slide.cover H3#author { color:#888; text-align:right; font-size:56px; + margin-top:24px; + margin-right:90px; +} + +.slide.cover H3#profile { + color:#888; + text-align:right; + font-size:24px; margin-right:90px; }