UNPKG

@soundstep/soma

Version:

Soma is a javascript framework created to build scalable and maintainable applications.

38 lines (34 loc) 761 B
<!DOCTYPE html> <html> <head> <title>soma.js router</title> <style> .view { display: none; } </style> </head> <body> <nav> <a href="#/home">Home</a> <a href="#/page1">Page 1</a> <a href="#/page2">Page 2</a> </nav> <div> <div class="view home"> <h1>Home</h1> </div> <div class="view page1"> <h1>Page 1</h1> </div> <div class="view page2"> <h1>Page 2</h1> </div> </div> <script type="text/javascript" src="../../../node_modules/@soundstep/infuse/dist/infuse.min.js"></script> <script type="text/javascript" src="../../../node_modules/signals/dist/signals.min.js"></script> <script type="text/javascript" src="../../../dist/soma.js"></script> <script src="js/director.min.js"></script> <script src="js/app.js"></script> </body> </html>