1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-08-04 12:17:42 +02:00

Pages Plugin: ui updates

This commit is contained in:
Awilum
2012-09-30 17:41:38 +03:00
parent 60c359b542
commit 8e0aef02fa
2 changed files with 8 additions and 8 deletions

View File

@@ -42,11 +42,11 @@
<div class="tab-pane <?php if (Notification::get('seo')) { ?>active<?php } ?>" id="seo"> <div class="tab-pane <?php if (Notification::get('seo')) { ?>active<?php } ?>" id="seo">
<?php <?php
echo ( echo (
Form::label('page_description', __('Description', 'pages')).
Form::input('page_description', $post_description, array('class' => 'span8')).
Html::br(2).
Form::label('page_keywords', __('Keywords', 'pages')). Form::label('page_keywords', __('Keywords', 'pages')).
Form::input('page_keywords', $post_keywords, array('class' => 'span8')) Form::input('page_keywords', $post_keywords, array('class' => 'span8')).
Html::br(2).
Form::label('page_description', __('Description', 'pages')).
Form::textarea('page_description', $post_description, array('class' => 'span8'))
); );
?> ?>

View File

@@ -55,11 +55,11 @@
<?php <?php
echo ( echo (
Form::label('page_description', __('Description', 'pages')).
Form::input('page_description', $description_to_edit, array('class' => 'span8')).
Html::br(2).
Form::label('page_keywords', __('Keywords', 'pages')). Form::label('page_keywords', __('Keywords', 'pages')).
Form::input('page_keywords', $keywords_to_edit, array('class' => 'span8')) Form::input('page_keywords', $keywords_to_edit, array('class' => 'span8')).
Html::br(2).
Form::label('page_description', __('Description', 'pages')).
Form::textarea('page_description', $description_to_edit, array('class' => 'span8'))
); );
echo ( echo (