File: genhtml/Complete/test1.html

<HTML>                   <!-- may also want a $DOCTYPE$ insert at the top -->
<HEAD>                   <!-- may also want an encoding-type $META$ in HEAD -->
<TITLE>Test1</TITLE>     <!-- may also want a mobile-viewport <meta> in HEAD -->
 
<!-- CAUTION: this file is cp1252, not utf8 or latin1: -->
<!-- opening in the wrong encoding can drop its quotes -->

<!--genhtml insert===============================================================-->
<!--a favicon in site root may work without this, but it's not universal         -->

<link rel="shortcut icon" type="image/x-icon" href="https://learning-python.com/favicon.ico" />
<!--=============================================================================-->


<!--genhtml insert====================================================================-->
<!--7/6/14: JS analytics code in <HEAD>, to isolate high traffic pages, if JS enabled -->

<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-YOURCODE-1', 'auto');    /* feb18: changed to protect the innocent... */
  ga('send', 'pageview');
</script>
<!--==================================================================================-->


<!--genhtml insert================================================-->
<!--11/15: code in <HEAD>, for fonts, borders, navbars, etc.      -->
<!--could also be an in-page <STYLE> sheet, as genhtml pastes text-->
<!--  ** used by all test templates: change regens all **         -->

<link rel="stylesheet" type="text/css" href="main.css">
<!--==============================================================-->


</HEAD>

<BODY>

<!--Used in some test templates only, has a nested insert-->
<H1 class=tanheader>Some SPAM Header</H1>

<H1>Test1 page</H1>

<P>Test that cp1252 slanted “quote” characters use non-ASCII encoding

<P>Test non-file date inserts... Thu Aug 30 18:10:02 2018

<P>Test global inline inserts: SPAM, SPAM, SPAM.

<P>Test that reference to nonexistent insert file is no-op: $NONESUCH$

<P>Test common footer block, with nested inserts:

<!--genhtml insert==================================================================-->
<!--Nov15: added via gensite.py, to avoid pasting footer in every file on changes   -->

</P>
<BR>
<TABLE border=1 bgcolor=tan width="100%">
<!--A NESTED INSERT: changing this causes inserters of its inserters to be regenerated, transitively-->
<TD align=center>
  <A class=blocklinkbar href="http://www.python.org">
  <IMG SRC="PythonPowered.gif" ALT="[Python Logo]" width=55 height=22 border=0></A>      <!--border for IE-->
<TD align=center>
  &copy;<I> M. Lutz</I>
<TD align=center>
  <B><A class=blocklinkbar HREF="mailto:lutz@learning-python.com">Email</A></B>
<TD align=center>
  <B><A class=blocklinkbar HREF="http://learning-python.com/books">Books</A></B>
<TD align=center>
  <B><A class=blocklinkbar HREF="http://learning-python.com/training">Training</A></B>
<TD align=center>
  <B><A class=blocklinkbar HREF="http://learning-python.com">Main</A></B>
<!--END NESTED INSERT-->
<TD align=center>
  <I>August 30, 2018</I>
</TABLE>
<!--================================================================================-->

</BODY></HTML>



[Home page] Books Code Blog Python Author Train Find ©M.Lutz