crear articulos según layout
This commit is contained in:
parent
1b244bf273
commit
075c47f0c7
3 changed files with 8 additions and 7 deletions
|
@ -6,13 +6,16 @@
|
||||||
@category]
|
@category]
|
||||||
|
|
||||||
%main.row
|
%main.row
|
||||||
%aside.col-md-3
|
%aside.menu.col-md-3
|
||||||
%h1
|
%h1
|
||||||
= link_to @site.title, @site.url
|
= link_to @site.title, @site.url
|
||||||
%p.lead= @site.description
|
%p.lead= @site.description
|
||||||
|
|
||||||
= link_to t('posts.new'), new_site_post_path(@site),
|
%h3= t('posts.new')
|
||||||
class: 'btn'
|
%ul
|
||||||
|
- @site.layouts.keys.each do |layout|
|
||||||
|
%li= link_to layout.to_s.humanize,
|
||||||
|
new_site_post_path(@site, layout: layout)
|
||||||
|
|
||||||
- if policy(@site).edit?
|
- if policy(@site).edit?
|
||||||
= link_to t('sites.edit.btn', site: @site.title),
|
= link_to t('sites.edit.btn', site: @site.title),
|
||||||
|
|
|
@ -355,8 +355,7 @@ en:
|
||||||
date: 'date'
|
date: 'date'
|
||||||
order: 'Order'
|
order: 'Order'
|
||||||
content: 'Text'
|
content: 'Text'
|
||||||
new: 'New post'
|
new: 'New post as'
|
||||||
new_with_template: 'New %{template}'
|
|
||||||
dropdown: 'Toggle dropdown'
|
dropdown: 'Toggle dropdown'
|
||||||
categories: 'Everything'
|
categories: 'Everything'
|
||||||
index: 'Posts'
|
index: 'Posts'
|
||||||
|
|
|
@ -367,8 +367,7 @@ es:
|
||||||
content: 'Cuerpo del artículo'
|
content: 'Cuerpo del artículo'
|
||||||
categories: 'Todos'
|
categories: 'Todos'
|
||||||
dropdown: 'Desplegar el menú'
|
dropdown: 'Desplegar el menú'
|
||||||
new: 'Crear artículo'
|
new: 'Crear artículo en:'
|
||||||
new_with_template: 'Comenzar %{template}'
|
|
||||||
index: 'Artículos'
|
index: 'Artículos'
|
||||||
edit: 'Editar'
|
edit: 'Editar'
|
||||||
open: 'Nota: Puedes agregar más opciones a medida que las escribes y presionas Entrar'
|
open: 'Nota: Puedes agregar más opciones a medida que las escribes y presionas Entrar'
|
||||||
|
|
Loading…
Reference in a new issue