Browse Source

Made the subtitle optional in templates.

pull/40/head
Savetheinternet 14 years ago
committed by Paul Merrill
parent
commit
4906ebac53
  1. 3
      templates/index.html
  2. 3
      templates/thread.html

3
templates/index.html

@ -10,7 +10,8 @@
</head>
<body>
<h1>{board[url]} - {board[name]}</h1>
<div class="title">{board[title]}</div>
<div class="title">{board[title]?{board[title]}}</div>
<form onsubmit="return dopost(this);" enctype="multipart/form-data" action="{post_url}" method="post">
<table>
<tr>

3
templates/thread.html

@ -10,7 +10,8 @@
</head>
<body>
<h1>{board[url]} - {board[name]}</h1>
<div class="title">{board[title]}</div>
<div class="title">{board[title]?{board[title]}}</div>
<div class="banner">Posting mode: Reply <a class="unimportant" href="{index}{board[dir]}">[Return.]</a></div>
<form onsubmit="return dopost(this);" enctype="multipart/form-data" action="{post_url}" method="post">
<input type="hidden" name="thread" value="{id}" />

Loading…
Cancel
Save