github.com/servernoj/jade@v0.0.0-20231225191405-efec98d19db1/testdata/v1/includes.tpl (about) 1 <html> 2 <head> 3 <title>My Site</title> 4 <!-- including other pug works --> 5 <script src="/javascripts/jquery.js"></script> 6 <script src="/javascripts/app.js"></script> 7 <!-- including .html, .css, etc works --> 8 <style> 9 body { 10 padding: 50px; 11 } 12 </style> 13 </head> 14 <body> 15 <h1>My Site</h1> 16 <p>Welcome to my super lame site.</p> 17 <div id="footer"> 18 <p>Copyright (c) foobar</p> 19 </div> 20 </body> 21 </html>