<div id="page"> <div class="container"> <div id="tools_wrapper"> <div class='ways'> <ul class="nav nav-pills" id="ways"> </ul> </div> </div> <!-- End of div.tools_wrapper --> </div> <div class="container"> <div id="content_wrapper"> <div id="content" class="content"></div> <a name="end_of_content"></a> </div> </div> </div> <!-- End of div.page -->
/* Your CSS here */
salet.game_id = "your-game-id-here" salet.game_version = "1.0" salet.autosave = false $(document).ready(() -> salet.beginGame() ) # The first room of the game. room "start", dsc: """ ## Hello [world!](end) """, ways: [] # available exits, implies clear: true choices: "#start" room "end", title: "End" dsc: """ #### Goodbye world! """ clear: false # don't clear the screen, default for rooms is true tags: ["start"] optionText: "Or not?"