mirror of
https://github.com/danpros/htmly.git
synced 2026-04-19 20:16:22 +05:30
Finished Feature custom meta description
This commit is contained in:
parent
4a7c57503e
commit
f81b68db2d
7 changed files with 49 additions and 51 deletions
|
|
@ -9,8 +9,9 @@
|
|||
<form method="POST">
|
||||
Title <span class="required">*</span><br><input type="text" class="text <?php if (isset($postTitle)) { if (empty($postTitle)) { echo 'error';}} ?>" name="title" value="<?php if (isset($postTitle)) { echo $postTitle;} ?>"/><br><br>
|
||||
Url (optional)<br><input type="text" class="text" name="url" value="<?php if (isset($postUrl)) { echo $postUrl;} ?>"/><br>
|
||||
<span class="help">If the url leave empty we will use the page title.</span>
|
||||
<br><br>
|
||||
<span class="help">If the url leave empty we will use the page title.</span><br><br>
|
||||
Meta Description (optional)<br><input type="text" class="text" name="description" value="<?php if (isset($postDescription)) { echo $postDescription;} ?>"/><br>
|
||||
<br>
|
||||
<div id="wmd-button-bar" class="wmd-button-bar"></div>
|
||||
<textarea id="wmd-input" class="wmd-input <?php if (isset($postContent)) { if (empty($postContent)) { echo 'error';}} ?>" name="content" cols="20" rows="10"><?php if (isset($postContent)) { echo $postContent;} ?></textarea><br/>
|
||||
<input type="hidden" name="csrf_token" value="<?php echo get_csrf()?>">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue