[I332] Dynamically set page titles #333

Open
rho_n wants to merge 2 commits from i332_Dynamically-set-page-titles into main
Showing only changes of commit ef4302f8d4 - Show all commits

View File

@@ -1,9 +1,18 @@
<!--% PROCESS 'shared-utils.tpl.html' %-->
<!--% USE date %-->
<!--% page_title = "Hacker Public Radio (HPR) ~ The Technology Community Podcast" %-->
<!--% WRAPPER page
# The default page_title variable set above can be overridden
# in each individual $content template (i.e. templates/conten-<template name>.tpl.html)
# processed below.
%-->
<!--% PROCESS $content %-->
<!--% END %-->
<!--% BLOCK page %-->
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Hacker Public Radio ~ The Technology Community Podcast</title>
<title><!--% page_title %--></title>
<!--% IF baseurl %-->
<base href="<!--% baseurl %-->">
<!--% END %-->
@@ -54,7 +63,8 @@
</div>
</header>
<main id="main_content" role="main">
<!--% INCLUDE $content %-->
<!--% content %-->
<!--% page_title = "acck" %-->
</main>
<footer role="contentinfo">
<hr class="no-css">
@@ -70,3 +80,4 @@
</footer>
</body>
</html>
<!--% END %-->