Exemple #1
0
                <img id="hero-img" src="../img/phyllotis-xanthopygus.jpg">
            </div>
            <center><span class="fig-caption"><a href="https://www.sciencenews.org/article/south-american-mouse-world-highest-dwelling-mammal" target="_blank">Source</a></a></span></center>
        </div>
        <div class="col-8-24" id="margin"></div>
    </div>
    <div class="row" id="sep_div"></div>
    <div class="row" id="sep_div"></div>
    <div class="row" id="sep_div"></div>

    {footer}

</body>
</html>
"""

######################
# Main block
######################
pagefile = "phyllotis/index.html";
print("Generating " + pagefile + "...");
title = "Good lab"

head = RC.readHead(title, pagefile, "servers");
nav = RC.readNav(pagefile, "main");
footer = RC.readFooter();

outfilename = "../../" + pagefile;

with open(outfilename, "w") as outfile:
    outfile.write(html_template.format(head=head, nav=nav, footer=footer));
Exemple #2
0
                        <b>We will have a Skype call on Tuesday, November 26 to follow up.</b>
                    </li>
                </ol>
                </br></br>

                <img class="pure-img" id="logo_main" src="img/5oldworldmice.jpg">
                <center><a href="http://dailymammal.com/murines-five-ways/">http://dailymammal.com/murines-five-ways/</a></center>
			</div>
		</div>
		<div class="pure-u-3-24" id="margin"></div>
	</div>

    {footer}
</body>
"""

######################
# Main block
######################
pagefile = "notes.html"
print("Generating " + pagefile + "...")
title = "Notes"

head = RC.readHead(title)
nav = RC.readNav(pagefile)
footer = RC.readFooter()

outfilename = "../../" + pagefile

with open(outfilename, "w") as outfile:
    outfile.write(html_template.format(head=head, nav=nav, footer=footer))
Exemple #3
0
					<p>When transferring files from Carnation, the port for the Good Lab docker container needs to be specified as follows:</p>

					<code>rsync -avzh -e 'ssh -p 2225' [email protected]:/home/gregg_thomas/data/ .</code>

				</div>
			</div>
		</div>
	</div>

	<div class="pure-u-24-24" id="sep_div"></div>


    {footer}
</body>
"""

######################
# Main block
######################
pagefile = "files.html"
print("Generating " + pagefile + "...")
title = "Griz - File Info"

head = RC.readHead(title, pagefile, "griz")
nav = RC.readNav(pagefile, "griz")
footer = RC.readFooter()

outfilename = "../../griz/" + pagefile

with open(outfilename, "w") as outfile:
    outfile.write(html_template.format(head=head, nav=nav, footer=footer))