diff options
author | 2024-07-09 18:29:14 +0200 | |
---|---|---|
committer | 2024-07-09 18:29:14 +0200 | |
commit | 1d57467f42fed56c97341909dd5537dae549ead7 (patch) | |
tree | 5a4aa18df3603754581bc502cd63962278e60812 | |
parent | 17337f57ae3e83a2d58564b44ad998938baf306e (diff) | |
download | website-1d57467f42fed56c97341909dd5537dae549ead7.tar.gz website-1d57467f42fed56c97341909dd5537dae549ead7.zip |
Reverse order for articles in home
I don't know why.
-rw-r--r-- | index.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/index.rhtml b/index.rhtml index 2236d46..3225360 100644 --- a/index.rhtml +++ b/index.rhtml @@ -36,7 +36,7 @@ <div class="container hyphens"> <div class="row"> - <% Hyde.listarticles("articles/**/*", 6).each { |p| %> + <% Hyde.listarticles("articles/**/*", 6).reverse_each { |p| %> <div class="col-lg-4 col-sm-12" style="margin-bottom: 20pt"> <div class="card <%= p.classes %> h-100"> <!-- <div class="card-header">Featured</div> --> |