From 544b11821828652380ec066ae0a401c85160391e Mon Sep 17 00:00:00 2001 From: elcuervo Date: Mon, 22 Apr 2024 17:00:01 -0300 Subject: [PATCH] Bust logo cache on build --- _includes/default_header.html | 2 +- _plugins/filters.rb | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/_includes/default_header.html b/_includes/default_header.html index beb6246..55fc58c 100644 --- a/_includes/default_header.html +++ b/_includes/default_header.html @@ -3,7 +3,7 @@

COMUNIDAD RUBY EN URUGUAY

- +
diff --git a/_plugins/filters.rb b/_plugins/filters.rb index b976d36..8c6c737 100644 --- a/_plugins/filters.rb +++ b/_plugins/filters.rb @@ -12,6 +12,10 @@ def css_asset(filename) def js_asset(filename) "/assets/js/#{filename}.js" end + + def image_asset(filename) + "/assets/images/#{filename}" + end end Liquid::Template.register_filter(CustomFilters)