Compare commits

..

3 commits

Author SHA1 Message Date
b039af4160
templates/page: drop dynamic
Some checks failed
/ preview (pull_request) Failing after 31s
2024-09-08 16:25:19 -04:00
79d1dccf32
templates/page: drop comments 2024-09-08 16:24:28 -04:00
7fb0d721d3
templates/*: Drop HTML5 conditions 2024-09-08 16:23:23 -04:00
2 changed files with 7 additions and 3 deletions

View file

@ -88,8 +88,12 @@
<li <TMPL_IF ACTIVE>class="active"</TMPL_IF>><a href="<TMPL_VAR URL>"><TMPL_VAR PAGE></a></li> <li <TMPL_IF ACTIVE>class="active"</TMPL_IF>><a href="<TMPL_VAR URL>"><TMPL_VAR PAGE></a></li>
</TMPL_IF> </TMPL_IF>
</TMPL_LOOP> </TMPL_LOOP>
</ul> </ul>
</div> </div>
</div> </div>
</nav> </nav>

View file

@ -1,4 +1,4 @@
<form method="get" action="<TMPL_VAR SEARCHACTION>" class="navbar-form navbar-left" role="search"> <form method="get" action="<TMPL_VAR SEARCHACTION>" class="navbar-form navbar-left" role="search">
<input type="text" class="form-control" name="P" value="" size="16" <input type="text" class="form-control" name="P" value="" size="16"
<TMPL_IF HTML5>placeholder="search"</TMPL_IF> /> placeholder="search" />
</form> </form>