5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-04 15:35:44 +00:00

las etiquetas y categorías siempre son un array

This commit is contained in:
f 2018-05-08 18:00:19 -03:00
parent 7c6e54c539
commit 35357c318f
No known key found for this signature in database
GPG key ID: F3FDAB97B5F9F7E7

View file

@ -137,11 +137,11 @@ class Post
end
def tags
get_front_matter 'tags'
get_front_matter 'tags' || []
end
def categories
get_front_matter 'categories'
get_front_matter 'categories' || []
end
alias :category :categories