las etiquetas y categorías siempre son un array
This commit is contained in:
parent
7c6e54c539
commit
35357c318f
1 changed files with 2 additions and 2 deletions
|
@ -137,11 +137,11 @@ class Post
|
||||||
end
|
end
|
||||||
|
|
||||||
def tags
|
def tags
|
||||||
get_front_matter 'tags'
|
get_front_matter 'tags' || []
|
||||||
end
|
end
|
||||||
|
|
||||||
def categories
|
def categories
|
||||||
get_front_matter 'categories'
|
get_front_matter 'categories' || []
|
||||||
end
|
end
|
||||||
alias :category :categories
|
alias :category :categories
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue