diff --git a/public/js/dayjs.min.js b/public/js/dayjs.min.js
new file mode 100644
index 00000000..61916d88
--- /dev/null
+++ b/public/js/dayjs.min.js
@@ -0,0 +1 @@
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs=e()}(this,(function(){"use strict";var t=1e3,e=6e4,n=36e5,r="millisecond",i="second",s="minute",u="hour",a="day",o="week",c="month",f="quarter",h="year",d="date",l="Invalid Date",$=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,y=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,M={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(t){var e=["th","st","nd","rd"],n=t%100;return"["+t+(e[(n-20)%10]||e[n]||e[0])+"]"}},m=function(t,e,n){var r=String(t);return!r||r.length>=e?t:""+Array(e+1-r.length).join(n)+t},v={s:m,z:function(t){var e=-t.utcOffset(),n=Math.abs(e),r=Math.floor(n/60),i=n%60;return(e<=0?"+":"-")+m(r,2,"0")+":"+m(i,2,"0")},m:function t(e,n){if(e.date()1)return t(u[0])}else{var a=e.name;D[a]=e,i=a}return!r&&i&&(g=i),i||!r&&g},O=function(t,e){if(S(t))return t.clone();var n="object"==typeof e?e:{};return n.date=t,n.args=arguments,new _(n)},b=v;b.l=w,b.i=S,b.w=function(t,e){return O(t,{locale:e.$L,utc:e.$u,x:e.$x,$offset:e.$offset})};var _=function(){function M(t){this.$L=w(t.locale,null,!0),this.parse(t),this.$x=this.$x||t.x||{},this[p]=!0}var m=M.prototype;return m.parse=function(t){this.$d=function(t){var e=t.date,n=t.utc;if(null===e)return new Date(NaN);if(b.u(e))return new Date;if(e instanceof Date)return new Date(e);if("string"==typeof e&&!/Z$/i.test(e)){var r=e.match($);if(r){var i=r[2]-1||0,s=(r[7]||"0").substring(0,3);return n?new Date(Date.UTC(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,s)):new Date(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,s)}}return new Date(e)}(t),this.init()},m.init=function(){var t=this.$d;this.$y=t.getFullYear(),this.$M=t.getMonth(),this.$D=t.getDate(),this.$W=t.getDay(),this.$H=t.getHours(),this.$m=t.getMinutes(),this.$s=t.getSeconds(),this.$ms=t.getMilliseconds()},m.$utils=function(){return b},m.isValid=function(){return!(this.$d.toString()===l)},m.isSame=function(t,e){var n=O(t);return this.startOf(e)<=n&&n<=this.endOf(e)},m.isAfter=function(t,e){return O(t)
- <%= event.created_at.ago %>
+ <%= event.created_at.ago %>
<% elsif event.site_change_id %>
@@ -85,7 +85,7 @@
<% end %>
- <%= event.created_at.ago %>
+ <%= event.created_at.ago %>
@@ -137,7 +137,7 @@
<% if comment_actioning_site.supporter? %><% end %><%= comment_actioning_site.username %>
- <%= comment.created_at.ago %>
+ <%= comment.created_at.ago %>
<%== sanitize_comment comment.message %>
@@ -171,3 +171,7 @@
<%== erb :'_news_templates', layout: false %>
+
+
\ No newline at end of file
diff --git a/views/_news_profile_comment.erb b/views/_news_profile_comment.erb
index d1571e36..7e20bb7d 100644
--- a/views/_news_profile_comment.erb
+++ b/views/_news_profile_comment.erb
@@ -18,7 +18,7 @@
- <%= profile_comment.created_at.ago %>
+ <%= profile_comment.created_at.ago %>
<%== sanitize_comment profile_comment.message %>
diff --git a/views/_news_tip.erb b/views/_news_tip.erb
index 6a717a9f..25823a5a 100644
--- a/views/_news_tip.erb
+++ b/views/_news_tip.erb
@@ -29,7 +29,7 @@
- <%= event.created_at.ago %>
+ <%= event.created_at.ago %>
diff --git a/views/dashboard/index.erb b/views/dashboard/index.erb
index eccb1219..730b1a53 100644
--- a/views/dashboard/index.erb
+++ b/views/dashboard/index.erb
@@ -34,7 +34,7 @@
<% if current_site.site_updated_at %>
- - Last updated <%= current_site.site_updated_at.ago.downcase %>
+ - Last updated <%= current_site.site_updated_at.ago.downcase %>
<% end %>
- Using <%= current_site.space_percentage_used %>% (<%= current_site.total_space_used.to_space_pretty %>) of your <%= current_site.maximum_space.to_space_pretty %>.
diff --git a/views/home.erb b/views/home.erb
index cc58673b..04cb4fe3 100644
--- a/views/home.erb
+++ b/views/home.erb
@@ -91,8 +91,8 @@
<%= site.title %>
- <% if site.updated_at %>
- Last updated
<%= site.updated_at.ago %>
+ <% if site.site_updated_at %>
+ Last updated
<%= site.site_updated_at.ago %>
<% else %>
Your new website!
Start Building
<% end %>
diff --git a/views/layout.erb b/views/layout.erb
index 9aa0df7d..3fb82e2a 100644
--- a/views/layout.erb
+++ b/views/layout.erb
@@ -23,6 +23,16 @@
@@ -39,6 +49,7 @@
+