From eb291542e6446d4a84e40b013d988dae0cb6cc4b Mon Sep 17 00:00:00 2001 From: Johan Van de Wauw Date: Mon, 21 Oct 2024 09:53:03 +0200 Subject: [PATCH] Remove unmaintained accommodation page --- content/hotels.yaml | 87 ---------------------------- content/practical/accommodation.html | 71 ----------------------- 2 files changed, 158 deletions(-) delete mode 100644 content/hotels.yaml delete mode 100644 content/practical/accommodation.html diff --git a/content/hotels.yaml b/content/hotels.yaml deleted file mode 100644 index 40b6757d1..000000000 --- a/content/hotels.yaml +++ /dev/null @@ -1,87 +0,0 @@ ---- -kind: internal -hotels: - 'Bed & Breakfast': - 'Bed & Brussels': - street: 'Main Office: Rue Goffart, 78' - zip: '1050' - tel: '2 6460737' - fax: '2 6440114' - url: 'http://www.bnb-brussels.be/en/index.html' - maps: - - 'http://osm.org/go/0EoS2qlnn--' - - 'http://goo.gl/maps/kV4GK' - - 'Youth Hostels': - 'Bruegel Youth Hostel': - street: 'Heilig Geeststraat, 2' - zip: '1000' - tel: '2 5110436' - fax: '2 5120711' - email: 'brussel@vjh.de' - url: 'http://www.jeugdherbergen.be/en/youth-hostels/city-hostels/brussel-bruegel' - maps: - - 'http://osm.org/go/0EoS1F2gC--' - - 'http://goo.gl/maps/BfJZz' - 'Sleep Well Youth Hostel': - street: 'Rue du Damier, 23' - zip: '1000' - tel: '2 2185050' - fax: '2 2181313' - email: 'info@sleepwell.be' - url: 'http://www.sleepwell.be/' - maps: - - 'http://osm.org/go/0EoThy3a3-' - - 'http://goo.gl/maps/DQGlH' - 'Youth Hostel Génération Europe': - street: "Rue de l'Elephant, 4" - zip: '1080' - tel: '2 4103858' - fax: '2 4103905' - email: 'brussels.europe@lesaubergesdejeunesse.be' - url: 'http://www.lesaubergesdejeunesse.be/en_US/website/action/hotel?id=1' - maps: - - 'http://osm.org/go/0EoTJlZ0E--' - - 'http://goo.gl/maps/HTUem' - 'Youth Hostel Jacques Brel': - street: 'Rue de la Sablonniere, 30' - zip: '1000' - tel: '2 2180187' - fax: '2 2172005' - email: 'brussels.brel@lesaubergesdejeunesse.be' - url: 'http://www.lesaubergesdejeunesse.be/en_US/website/action/hotel?id=2' - maps: - - 'http://osm.org/go/0EoTjkBRj--' - - 'http://goo.gl/maps/2Jydm' - '2GO4 Quality Hostel': - street: 'Avenue Emile Jacqmain, 99' - zip: '1000' - tel: '2 2193019' - fax: '2 2193009' - email: 'info@2go4.be' - url: 'http://www.2go4.be/' - maps: - - 'http://osm.org/go/0EoThZltx-' - - 'http://goo.gl/maps/mJybH' - 'CHAB: Centre Van Gogh': - street: 'Rue Traversiere, 8' - zip: '1210' - tel: '2 2170158' - fax: '2 2197995' - email: 'info@chab.be' - url: 'http://www.chab.be/' - maps: - - 'http://osm.org/go/0EoTj0jzK-' - - 'http://goo.gl/maps/wG8yY' - 'Auberge des 3 Fontaines': - street: 'Chaussée de Wavre, 2057' - zip: '1160' - tel: '2 6632432' - fax: '2 6721939' - email: 'contact@auberge3fontaines.be' - url: 'http://www.auberge3fontaines.be/en/' - maps: - - 'http://osm.org/go/0EoYhwkm' - - 'http://goo.gl/maps/nKtWF' - ---- diff --git a/content/practical/accommodation.html b/content/practical/accommodation.html deleted file mode 100644 index b25766cea..000000000 --- a/content/practical/accommodation.html +++ /dev/null @@ -1,71 +0,0 @@ ---- -title: Accommodation ---- -<% -# vim: set ts=2 sw=2 et ft=eruby fileencoding=utf-8: -%> - -

FOSDEM does not recommend any particular hotel or hostel. However, here is a -list of popular accommodations for FOSDEM visitors to get you started. You can -also check the mailing -list for more information. wikivoyage also lists some -places to stay.

- -

Hotels

-

- Brussels has a large selection of hotels in every price range. -

- -

CouchSurfing / BeWelcome

-

Are you looking for a couch or do you maybe have one to offer? -Join the FOSDEM CouchSurfing -or BeWelcome group and find fellow visitors!

- -<% $item_by_id.fetch('/hotels/')[:hotels].each do |section, hotels| %> -

<%= section.to_s %>

-

In alphabetical order:

-<% -hotels.keys.sort.each_with_index do |name, i| -hotel = hotels[name] -%> -<% if i%2==0 %> -
-<% end %> -
-

<%= name %>

- - <%= hotel[:street] %> - <% if hotel[:map] %><% end %> - <% - if hotel[:maps] - hotel[:maps].each do |url| - tag = case url - when %r{/goo\.gl/} - ' on Google Maps' - when %r{/osm\.org/} - ' on OSM' - else - '' - end - %> - - <% - end - end - %> -
- <%= hotel[:zip] %> - <%= hotel.fetch(:loc, 'Brussels') %>
- Belgium
- <% if hotel[:email] %>
<% end %> - <% if hotel[:tel] %> Tel: ">+32 <%= hotel[:tel] %>
<% end %> - <% if hotel[:fax] %> Fax: +32 <%= hotel[:fax] %>
<% end %> - <%= hotel[:url].gsub(%r{^https.://},'') %> -
-
-<% if i%2==1 or i>=hotels.size-1%> -
-<% end %> -<% end %> -<% end %>