--- a/autotweet-php/src/Org/W3/AutotweetBundle/Resources/views/Default/intro.html.twig Wed Sep 04 17:17:06 2013 +0900
+++ b/autotweet-php/src/Org/W3/AutotweetBundle/Resources/views/Default/intro.html.twig Wed Sep 04 17:34:47 2013 +0900
@@ -31,28 +31,46 @@
Please download and unzip it.
</p>
<p><a class="btn btn-large btn-print" href="w3c_talk.zip">
- Download.
+ Download
</a></p>
-<h3>2.Register your talk and get access key.</h3>
-<p>You can register the talk by following link.
-The reason for this registration is to distinguish each talks and prevent duplicated multi posts.
-</p>
+<h3>2. Get an access key</h3>
+<p>Once activated, this will register your slides on the server which prevents sending duplicate posts.</p>
<p><a class="btn btn-large btn-print" href="{{ path('org_w3_autotweet_newtalk') }}">
- Get an accesskey.
+ Get accesskey
</a></p>
-<h3>3.Edit the configuration</h3>
+<h3>3.Edit your presentation</h3>
<ul>
-<li>Edit js/w3c_talks.js with your access key on line 67.</li>
-<li>Put metadata on your slide like following.</li>
-<p>
-<meta name="hashtag" content="#testevent">
-<meta name="author" content="Bob Smith">
-</p>
-<li>include js/w3c_talk.js into just before </body> tag on your slide.</li>
+ <li>Include the <code>w3c_talk.js</code> file just before the closing <code></body></code> tag in your presentation, like so:
+ <pre><code>
+ ...
+ <script src="js/w3c_talk.js"></script>
+ </body>
+ </code></pre></li>
+ <li>Put metadata in your presentation like so:
+ <pre><code>
+ <head>
+ ...
+ <meta name="hashtag" content="#testevent">
+ <meta name="author" content="Bob Smith">
+ <title>My wonderful talk</title>
+ ...
+ </head>
+ </code></pre>
+ </li>
+ <li>For each slide you'd like to post/tweet a note for, add a <code>data-note</code> attribute like so:
+ <pre><code>
+ <div class="slide" data-note="80% of statistics are made up">
+ <h1>80% of statistics are made up</h1>
+ ...
+ </div>
+ </code></pre>
+ </li>
</ul>
+<p>Just before you start your presentation at the event, enter the access key in the black dialog box and tweets will be sent as you present your slides. Don't worry - until you enter the access key nothing will be tweeted.</p>
+
<h2>Existing Talks</h2>
{% if talk|length > 0 %}