git.fiddlerwoaroof.com
html/comm.html
be9b2e82
 <!DOCTYPE html>
 <html xmlns="http://www.w3.org/1999/xhtml"
cc2b0b8e
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd"
10d0a6e5
      prefix="og: http://ogp.me/ns# book: http://ogp.me/ns/book# profile: http://ogp.me/ns/profile#"
cc2b0b8e
      xml:lang="en">
be9b2e82
     <head>            
       <title>Commentar</title>
69584931
       <meta property="og:title" content="Commentary on Saint Paul’s First Letter to the Thessalonians" />
87459c53
       <meta property="og:type" content="book" />
be9b2e82
       <meta property="og:url" content="http://comm.elangley.org/html/comm.html" />
46b1a262
       <meta property="og:image" content="http://comm.elngley.org/css/logo.svg" />
96dc7f93
       <meta property="book:author" content="http://comm.elangley.org/html/ta.html" />
87459c53
       <meta property="book:tag" content="Theology" />
cc2b0b8e
       <link rel="shortcut icon" href="/css/logo.svg">
       <meta charset="UTF-8">
be9b2e82
 
       <link rel="stylesheet" href="/css/screen.less" type="text/less"/>
       <script src="/js/jquery.js" type="text/javascript"></script>
       <script src="/js/underscore.js" type="text/javascript"></script>
       <script src="/js/backbone.js" type="text/javascript"></script>
       <script src="/js/less-1.3.3.min.js" type="text/javascript"></script>
       <script src="/js/jquery-scrolltofixed-min.js" type="text/javascript"></script>
 
       <script src="/js/models.js" type="text/javascript"></script>
       <script src="/texts/51378f4524eaa031c5d4f7d9" type="text/javascript"></script>
 
 <script type="text/javascript">
 
 var text, textView
 $(document).ready(function(){
 
    var text = []
 
    $(objs).each(function() {
       text.push(
          new Chunk({
             name: this.name,
             orig: new Paragraph({text: this.orig}),
             comment: new Paragraph({text: this.comment}),
                      
          })
       )
    })
 
    text = new Text(text);
 
    textView = new TextView({
       collection : text,
       el: $('article')[0]
    });
 
    $('h1').text(text_title);
    $('title').text(text_title);
    textView.render();
 
 });
 
 </script>
 
 
     </head>
     <body>
         <h1></h1>
         <section id="sidebar">
           <ul id="nav">
           </ul>
           <div class="instructions">
              Double-click on text to show/hide commentary
           </div>
         </section>
         <article></article>
     </body>
 </html>