posts: add "Absurd" size option to thumbnail size menu.

Add option for "Absurd" (720px) size thumbnails to the thumbnail size
menu. 720px size thumbnails require .webp support so they won't work in
older browsers.
This commit is contained in:
evazion
2022-06-25 21:53:27 -05:00
parent c059b4a39a
commit 7b1f6e42c1

View File

@@ -29,4 +29,9 @@
<% menu.item do %>
<%= link_to "Gigantic", current_page_path(size: 360), class: ["desktop-only", ("font-bold" if current_size == 360)], rel: "nofollow" %>
<% end %>
<%# Desktop only %>
<% menu.item do %>
<%= link_to "Absurd", current_page_path(size: 720), class: ["desktop-only", ("font-bold" if current_size == 720)], rel: "nofollow" %>
<% end %>
<% end %>