70 lines
1.4 KiB
Smarty
70 lines
1.4 KiB
Smarty
{if condition="html"}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{include file="master2/head.tpl"/}
|
|
</head>
|
|
<body>
|
|
{/if}
|
|
|
|
{unless condition="$web"}
|
|
<!-- Site Navigation -->
|
|
{include file="master2/site_navigation.tpl"/}
|
|
{/unless}
|
|
|
|
|
|
{if condition="html"}
|
|
|
|
<div class="container">
|
|
<hr>
|
|
<div class="row">
|
|
<main class="main">
|
|
{/if}
|
|
|
|
<div class="container-fluid">
|
|
<div class="col-xs-12" itemscope itemtype="http://schema.org/Article">
|
|
<form class="form-inline well" action="{$host/}/node/{$id/}/title" method="POST">
|
|
<input type="hidden" name="method" value="PUT">
|
|
<fieldset>
|
|
<legend>Edit Node Title</legend>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-1">
|
|
<label> <span itemprop="text">Title:</span> </label>
|
|
</div>
|
|
<div class="col-xs-7">
|
|
<input id="title" type="text" name="title" placeholder="Title" required value="{$node_title/}"/>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<label>
|
|
<span> </span>
|
|
<input type="Submit" value="Send" />
|
|
</label>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{if condition="html"}
|
|
|
|
</main>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
|
|
{if condition="html"}
|
|
<div id="footer">
|
|
<footer class="site-footer">
|
|
{include file="master2/footer.tpl"/}
|
|
</footer>
|
|
</div>
|
|
|
|
|
|
{include file="master2/optional_enhancement_js.tpl"/}
|
|
|
|
</body>
|
|
</html>
|
|
{/if} |