Difference between revisions of "Slides"

From EVE University Wiki
Jump to: navigation, search
m (→‎Jump Clones 101: fixed link)
Line 3: Line 3:
 
== Guide ==
 
== Guide ==
  
''how to create a deck''
+
Slides are denoted using <section>your slide</section> and accept standard html. A demonstration deck can be found [http://lab.hakim.se/reveal-js/#/ here]. To see how individual slides were created view the source for that page. A simple example is provided below.
 +
 
 +
Once you've created your presentation in your editor of choice follow these steps:
 +
* Upload the raw slides to http://wiki.eveuniversity.org/Slides/Class_name
 +
* Make sure to surround your slides with <nowiki><nowiki>tags</nowiki></nowiki> so that the source is easily readable.
 +
* Add the Slides template by including <nowiki>{{Slides}}</nowiki> at the top of the page.
 +
* Save your changes.
 +
 
 +
A presentation version of these slides can be viewed by modifying the following url: http://s.fboyd.me/present.php?page=Class_name so that "Class_name" points to your class slides.
 +
 
 +
=== Examples ===
 +
 
 +
Example simple slide pack:
 +
<nowiki>
 +
<section>
 +
<h1>The title of the class</h1>
 +
<p>
 +
Description of the class
 +
</p>
 +
</section>
 +
<section>
 +
<h2>A talking point</h2>
 +
<p>
 +
<li>An unordered list</li>
 +
<li>of talking point details</li>
 +
</p>
 +
</section>
 +
</nowiki>
 +
* [[Slides/Jump_Clones_101|Functional raw slides]] (edit the page to see the nowiki tags and slides category)
 +
* Presented version of above: http://s.fboyd.me/present.php?page=Jump_Clones_101
  
 
== List ==
 
== List ==

Revision as of 06:33, 18 September 2014

EVE University slide repository

Guide

Slides are denoted using

your slide

and accept standard html. A demonstration deck can be found here. To see how individual slides were created view the source for that page. A simple example is provided below.

Once you've created your presentation in your editor of choice follow these steps:

  • Upload the raw slides to http://wiki.eveuniversity.org/Slides/Class_name
  • Make sure to surround your slides with <nowiki>tags</nowiki> so that the source is easily readable.
  • Add the Slides template by including {{Slides}} at the top of the page.
  • Save your changes.

A presentation version of these slides can be viewed by modifying the following url: http://s.fboyd.me/present.php?page=Class_name so that "Class_name" points to your class slides.

Examples

Example simple slide pack:

<section>
	<h1>The title of the class</h1>
	<p>
		Description of the class
	</p>
</section>
<section>
	<h2>A talking point</h2>
	<p>
		<li>An unordered list</li>
		<li>of talking point details</li>
	</p>
</section>

List

Jump Clones 101