Merge branch 'master' into fix/social-icons
This commit is contained in:
commit
960a746604
4 changed files with 7 additions and 7 deletions
2
Rules
2
Rules
|
@ -156,7 +156,7 @@ ignore '/assets/stylesheets/includes/**/*'
|
|||
|
||||
compile '/assets/stylesheets/**/*.scss' do
|
||||
filter :sass, syntax: :scss
|
||||
filter :autoprefixer if Socket.gethostname == 'abysm'
|
||||
filter :autoprefixer
|
||||
end
|
||||
|
||||
passthrough '/assets/images/*.{png,svg}'
|
||||
|
|
|
@ -7,11 +7,11 @@
|
|||
<div id="homepage">
|
||||
<div class="tile is-vertical is-ancestor">
|
||||
<div class="tile is-parent is-12">
|
||||
<%= render '/partials/_tile.*', article: all_events[0], htmlclass: "highlighted", small_text: "Upcoming event" %>
|
||||
<%= render '/partials/_tile.*', article: upcoming_events[0], htmlclass: "highlighted", small_text: "Upcoming event" %>
|
||||
</div>
|
||||
<div class="tile">
|
||||
<div class="tile is-parent is-4">
|
||||
<%= render '/partials/_tile.*', article: all_events[1], small_text: "Upcoming event" %>
|
||||
<%= render '/partials/_tile.*', article: upcoming_events[1], small_text: "Upcoming event" %>
|
||||
</div>
|
||||
<div class="tile is-parent is-4">
|
||||
<div class="tile is-child box centering">
|
||||
|
|
|
@ -5,11 +5,11 @@ module EventsHelper
|
|||
end
|
||||
|
||||
def upcoming_events
|
||||
all_events.reject { |x| x[:time] < Date.today }
|
||||
all_events.reject { |x| x[:time] <= Date.today }
|
||||
end
|
||||
|
||||
def past_events
|
||||
all_events.reject { |x| x[:time] >= Date.today }
|
||||
all_events.reject { |x| x[:time] > Date.today }
|
||||
end
|
||||
|
||||
def grouped_events
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Zeus WPI
|
|||
author_name: ''
|
||||
author_uri: ''
|
||||
|
||||
base_url: https://zeus.ugent.be/beta
|
||||
base_url: https://zeus.ugent.be
|
||||
|
||||
# The syntax to use for patterns in the Rules file. Can be either `"glob"`
|
||||
# (default) or `"legacy"`. The former will enable glob patterns, which behave
|
||||
|
@ -99,5 +99,5 @@ checks:
|
|||
deploy:
|
||||
public:
|
||||
kind: rsync
|
||||
dst: zeusweb-beta@zeus.ugent.be:/home/zeusweb-beta/public
|
||||
dst: zeusweb-new@zeus.ugent.be:/home/zeusweb-new/public
|
||||
options: [ '-glpPrtvz', '-e', 'ssh -p 2222', '--delete']
|
||||
|
|
Loading…
Reference in a new issue