delete code, untested

This commit is contained in:
Torsten 2022-12-11 21:30:25 +02:00
parent fd86f0531c
commit 4a6960efe1
14 changed files with 823 additions and 749 deletions

View File

@ -23,7 +23,7 @@ module Merged
@card.move_down @card.move_down
end end
@card.save @card.save
redirect_to section_cards_url(@card.section.id),notice: "Card moved" redirect_to section_cards_url(@card.section.id),notice: "#{@card.header} moved"
end end
def new def new
@ -34,8 +34,7 @@ module Merged
def destroy def destroy
@card.destroy @card.destroy
@card.section.save redirect_to section_cards_url(@card.section.id) , notice: "#{@card.header} removed"
redirect_to section_cards_url(@card.section.id) , notice: "Card #{@card.index} removed"
end end
def update def update
@ -50,7 +49,7 @@ module Merged
@card.set_option(option.name, options[option.name]) @card.set_option(option.name, options[option.name])
end if options end if options
@card.save @card.save
redirect_to section_cards_url(@card.section.id) , notice: "Update ok" redirect_to section_cards_url(@card.section.id) , notice: "Updated #{@card.header}"
end end
private private

View File

@ -21,7 +21,7 @@ module Merged
end end
def destroy def destroy
Page.destroy(@page) @page.destroy()
redirect_to pages_url, notice: "Page #{@page.name} was removed." redirect_to pages_url, notice: "Page #{@page.name} was removed."
end end

View File

@ -33,8 +33,7 @@ module Merged
def destroy def destroy
@section.destroy() @section.destroy()
@section.page.save redirect_to page_sections_url(@section.page.id) , notice: "Section #{@section.header} removed"
redirect_to page_sections_url(@section.page.id) , notice: "Section #{@section.index} removed"
end end
def set_image def set_image

View File

@ -3,7 +3,7 @@ module Merged
include MergedHelper include MergedHelper
def view def view
@page = Page.find(params[:id]) @page = Page.find_by_name(params[:id])
end end
end end

View File

@ -10,11 +10,7 @@ module Merged
fields :index , :section_id, :id , :text , :header, :image fields :index , :section_id, :id , :text , :header, :image
def template_style def template_style
@section.card_template section.card_template
end
def destroy
@section.remove_card( self)
end end
def move_up def move_up
@ -33,12 +29,6 @@ module Merged
section.cards.where(index: index + 1).first section.cards.where(index: index + 1).first
end end
def save
super
data = Card.all.collect {|obj| obj.attributes}
File.write( Card.full_path , data.to_yaml)
end
def set_index(index) def set_index(index)
@index = index @index = index
end end
@ -47,6 +37,27 @@ module Merged
CardStyle.find_by_template( section.card_template) CardStyle.find_by_template( section.card_template)
end end
def destroy
delete
Card.save_all
end
def delete(reindex = true)
Card.delete( self.id )
section.reset_index if reindex
end
def save
super
Card.save_all
end
def self.save_all
data = Card.the_private_records.collect {|obj| obj.attributes}
File.write( Card.full_path , data.to_yaml)
Card.reload
end
def self.new_card(card_template , section_id , index) def self.new_card(card_template , section_id , index)
data = { section_id: section_id , index: index} data = { section_id: section_id , index: index}
CardStyle.find_by_template( card_template ).fields.each do |key| CardStyle.find_by_template( card_template ).fields.each do |key|

View File

@ -25,11 +25,6 @@ module Merged
Page.new(name) Page.new(name)
end end
def self.destroy( page )
@@all.delete(page.name)
File.delete(Rails.root.join(Page.cms_root , page.name + ".yaml"))
end
def new_section(section_template) def new_section(section_template)
section_template = "section_spacer" if section_template.blank? section_template = "section_spacer" if section_template.blank?
section_data = Section.build_data(section_template) section_data = Section.build_data(section_template)
@ -54,11 +49,36 @@ module Merged
@content[0]["template"] @content[0]["template"]
end end
def save def reset_index
super sections.each_with_index{|section, index| section.index = index + 1}
data = Page.all.collect {|obj| obj.attributes}
File.write( Page.full_path , data.to_yaml)
end end
def destroy
has_sections , has_cards = delete()
Page.save_all
if has_sections > 0
Section.save_all
Card.save_all if has_cards > 0
end
end
def delete
has_sections = sections.length
has_cards = 0
sections.each {|section| has_cards += section.delete(false) }
Page.delete( self.id )
[has_sections , has_cards]
end
def save
super
Page.save_all
end
def self.save_all
data = Page.the_private_records.collect {|obj| obj.attributes}
File.write( Page.full_path , data.to_yaml)
Page.reload
end
end end
end end

View File

@ -66,13 +66,6 @@ module Merged
page.sections.where(index: index + 1).first page.sections.where(index: index + 1).first
end end
def save
super
data = Section.all.collect {|obj| obj.attributes}
File.write( Section.full_path , data.to_yaml)
end
def self.build_data(template) def self.build_data(template)
data = { "template" => template , "id" => SecureRandom.hex(10) } data = { "template" => template , "id" => SecureRandom.hex(10) }
style = SectionStyle.sections[ template ] style = SectionStyle.sections[ template ]
@ -86,5 +79,34 @@ module Merged
data data
end end
def reset_index
cards.each_with_index{|card, index| card.index = index + 1}
end
def destroy
has_cards = delete()
Section.save_all
Card.save_all if has_cards > 0
end
def delete( reindex = true )
has_cards = cards.length
cards.each {|card| card.delete(false) }
Section.delete( self.id )
page.reset_index if reindex
has_cards
end
def save
super
Section.save_all
end
def self.save_all
data = Section.the_private_records.collect {|obj| obj.attributes}
File.write( Section.full_path , data.to_yaml)
Section.reload
end
end end
end end

View File

@ -5,7 +5,7 @@ module Merged
fields :template , :text , :header, :fields , :cards fields :template , :text , :header, :fields , :cards
def has_cards? def has_cards?
cards == true cards
end end
def section_preview def section_preview

View File

@ -2,7 +2,7 @@
.flex.items-center.justify-center.flex-1 .flex.items-center.justify-center.flex-1
.max-w-xl.px-4.py-8.mx-auto.text-center .max-w-xl.px-4.py-8.mx-auto.text-center
%h1.text-3xl.font-bold.tracking-tight.text-gray-900 %h1.text-3xl.font-bold.tracking-tight.text-gray-900
Page #{link_to @section.page.name, page_sections_url(@section.page.name), class: "underline"} Page #{link_to @section.page.name, page_sections_url(@section.page.id), class: "underline"}
.flex.items-center.justify-center.flex-1 .flex.items-center.justify-center.flex-1
.max-w-xl.px-4.py-8.mx-auto.text-center .max-w-xl.px-4.py-8.mx-auto.text-center
%h1.text-3xl.font-bold.tracking-tight.text-gray-900 %h1.text-3xl.font-bold.tracking-tight.text-gray-900

View File

@ -5,7 +5,7 @@
.flex.items-center.justify-center.flex-1 .flex.items-center.justify-center.flex-1
.max-w-xl.px-4.py-8.mx-auto.text-center .max-w-xl.px-4.py-8.mx-auto.text-center
%h1.text-3xl.font-bold.tracking-tight.text-gray-900 %h1.text-3xl.font-bold.tracking-tight.text-gray-900
Page #{link_to @section.page.name, page_sections_url(@section.page.name), class: "underline"} Page #{link_to @section.page.name, page_sections_url(@section.page.id), class: "underline"}
.flex.items-center.justify-center.flex-1 .flex.items-center.justify-center.flex-1
%h3.text-xl.font-bold.tracking-tight.text-gray-900 %h3.text-xl.font-bold.tracking-tight.text-gray-900
Section #{@section.index} / #{@section.page.sections.length} Section #{@section.index} / #{@section.page.sections.length}

View File

@ -0,0 +1,16 @@
require "active_hash"
module ActiveHash
Base.class_eval do
def self.delete(id) # only works with id's
@record_index.delete(id.to_s)
@records.delete_if{|record| record[:id] == id.to_i}
true
end
def the_private_records
@records
end
end
end

View File

@ -1,478 +1,478 @@
--- ---
- id: 1 - :id: 1
header: Name :header: Name
text: '' :text: ''
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: text form_type: text
updated_at: &1 2022-12-09 17:56:51.141334688 +02:00 :updated_at: &1 2022-12-09 17:56:51.141334688 +02:00
section_id: 9 :section_id: 9
index: 1 :index: 1
- id: 2 - :id: 2
header: Email :header: Email
text: '' :text: ''
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: email form_type: email
updated_at: *1 :updated_at: *1
section_id: 9 :section_id: 9
index: 2 :index: 2
- id: 3 - :id: 3
header: Phone :header: Phone
text: '' :text: ''
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: phone form_type: phone
updated_at: *1 :updated_at: *1
section_id: 9 :section_id: 9
index: 3 :index: 3
- id: 4 - :id: 4
header: Interest :header: Interest
text: '' :text: ''
updated_at: *1 :updated_at: *1
section_id: 9 :section_id: 9
index: 4 :index: 4
- id: 5 - :id: 5
header: Message :header: Message
text: '' :text: ''
options: :options:
compulsory: 'no' compulsory: 'no'
form_type: message form_type: message
updated_at: *1 :updated_at: *1
section_id: 9 :section_id: 9
index: 5 :index: 5
- header: Standard - :header: Standard
text: This is the standard two patient room. They are mostly towards the south, :text: This is the standard two patient room. They are mostly towards the south,
so may have great, or too much light, depending on how you see it. The size is so may have great, or too much light, depending on how you see it. The size is
about 3x5, cost 120e. about 3x5, cost 120e.
image: standard :image: standard
id: 6 :id: 6
options: :options:
background: solid_blue background: solid_blue
color: white color: white
align: left align: left
updated_at: &2 2022-12-09 17:50:02.733622073 +02:00 :updated_at: &2 2022-12-09 17:50:02.733622073 +02:00
section_id: 11 :section_id: 11
index: 1 :index: 1
- header: Large - :header: Large
text: The old four patient rooms are basically twice the size as the small. They :text: The old four patient rooms are basically twice the size as the small. They
are large enough to be shared. The size is about 30m2 and the cost 240e. Like are large enough to be shared. The size is about 30m2 and the cost 240e. Like
the small rooms these are south facing, very light. the small rooms these are south facing, very light.
image: large :image: large
id: 7 :id: 7
options: :options:
background: solid_blue background: solid_blue
color: white color: white
align: left align: left
updated_at: *2 :updated_at: *2
section_id: 11 :section_id: 11
index: 2 :index: 2
- id: 8 - :id: 8
header: Non standard :header: Non standard
text: There are smaller, rooms, and some connected rooms. If your needs are small, :text: There are smaller, rooms, and some connected rooms. If your needs are small,
of you rather have 2 small rooms than one, talk to us. These are mostly old admin of you rather have 2 small rooms than one, talk to us. These are mostly old admin
rooms facing north, starting at 100e. rooms facing north, starting at 100e.
image: non_standard_room :image: non_standard_room
options: :options:
background: solid_blue background: solid_blue
color: white color: white
align: left align: left
updated_at: *2 :updated_at: *2
section_id: 11 :section_id: 11
index: 3 :index: 3
- id: 9 - :id: 9
header: Wet spaces :header: Wet spaces
text: If your work requires you to get dirty, we have different size wet rooms. :text: If your work requires you to get dirty, we have different size wet rooms.
Here we are talking about spaces with floor drains that are tiled all around. Here we are talking about spaces with floor drains that are tiled all around.
There are about 2-3 per floor, in different sizes, from 12 to 25m2. There are about 2-3 per floor, in different sizes, from 12 to 25m2.
options: :options:
background: solid_blue background: solid_blue
color: white color: white
align: left align: left
image: wet_space_room :image: wet_space_room
updated_at: *2 :updated_at: *2
section_id: 11 :section_id: 11
index: 4 :index: 4
- id: 10 - :id: 10
header: Common spaces :header: Common spaces
text: Each floor has it's own large common space. Also, Hub Feenix offers great :text: Each floor has it's own large common space. Also, Hub Feenix offers great
public spaces, terraces, a cafe, co-working and maker spaces. public spaces, terraces, a cafe, co-working and maker spaces.
image: common_spaces :image: common_spaces
options: :options:
background: solid_red background: solid_red
align: center align: center
updated_at: *2 :updated_at: *2
section_id: 12 :section_id: 12
index: 1 :index: 1
- id: 11 - :id: 11
header: En suite and fold out :header: En suite and fold out
text: "Some rooms have attached (or shared) bathrooms. Also, you have the option :text: "Some rooms have attached (or shared) bathrooms. Also, you have the option
of a fold-out bed to stay overnight.\r\nIt's like a home away from home." of a fold-out bed to stay overnight.\r\nIt's like a home away from home."
image: en_suite_studio :image: en_suite_studio
options: :options:
background: solid_blue background: solid_blue
align: center align: center
updated_at: *2 :updated_at: *2
section_id: 12 :section_id: 12
index: 2 :index: 2
- id: 12 - :id: 12
header: Shared kitchen, own sink :header: Shared kitchen, own sink
text: Each floor has it's own common kitchen. This is especially useful if you take :text: Each floor has it's own common kitchen. This is especially useful if you
the option of a fold out bed to stay overnight. And almost all spaces have a sink take the option of a fold out bed to stay overnight. And almost all spaces have
in the room, so you can clean things or make a tea in peace. a sink in the room, so you can clean things or make a tea in peace.
options: :options:
background: solid_indigo background: solid_indigo
align: center align: center
image: studio_kitchen :image: studio_kitchen
updated_at: *2 :updated_at: *2
section_id: 12 :section_id: 12
index: 3 :index: 3
- id: 13 - :id: 13
header: Name :header: Name
text: '' :text: ''
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: text form_type: text
updated_at: *2 :updated_at: *2
section_id: 13 :section_id: 13
index: 1 :index: 1
- id: 14 - :id: 14
header: Email :header: Email
text: '' :text: ''
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: email form_type: email
updated_at: *2 :updated_at: *2
section_id: 13 :section_id: 13
index: 2 :index: 2
- id: 15 - :id: 15
header: Phone :header: Phone
text: '' :text: ''
options: :options:
compulsory: 'no' compulsory: 'no'
form_type: phone form_type: phone
updated_at: *2 :updated_at: *2
section_id: 13 :section_id: 13
index: 3 :index: 3
- id: 16 - :id: 16
header: Space requirements :header: Space requirements
text: '' :text: ''
updated_at: *2 :updated_at: *2
section_id: 13 :section_id: 13
index: 4 :index: 4
- id: 17 - :id: 17
header: Message :header: Message
text: '' :text: ''
options: :options:
compulsory: 'no' compulsory: 'no'
form_type: message form_type: message
updated_at: *2 :updated_at: *2
section_id: 13 :section_id: 13
index: 5 :index: 5
- id: 18 - :id: 18
header: The Hall :header: The Hall
text: Our beautiful hall, one of the largest in the area, is 8 x 20m and can accommodate :text: Our beautiful hall, one of the largest in the area, is 8 x 20m and can accommodate
50 yogi, 80 dancers, or 120 listeners. We have a professional audio system for 50 yogi, 80 dancers, or 120 listeners. We have a professional audio system for
dancing and of course chairs for meetings. dancing and of course chairs for meetings.
options: :options:
background: none background: none
align: center align: center
subheader: 40 - 120 subheader: 40 - 120
color: none color: none
image: the_hall :image: the_hall
updated_at: &3 2022-12-09 17:32:41.538163009 +02:00 :updated_at: &3 2022-12-09 17:32:41.538163009 +02:00
section_id: 15 :section_id: 15
index: 1 :index: 1
- id: 19 - :id: 19
header: Mandala room :header: Mandala room
text: The Mandala room, in the fifth floor, is a slightly asymmetrical 100m2. With :text: The Mandala room, in the fifth floor, is a slightly asymmetrical 100m2. With
it's great views and light atmosphere it is especially suited for yoga (30) and it's great views and light atmosphere it is especially suited for yoga (30) and
mediation (60). It also has a private eating area and staircase. mediation (60). It also has a private eating area and staircase.
options: :options:
background: none background: none
align: center align: center
subheader: 30 - 60 subheader: 30 - 60
color: none color: none
image: mandala_room :image: mandala_room
updated_at: *3 :updated_at: *3
section_id: 15 :section_id: 15
index: 2 :index: 2
- id: 20 - :id: 20
header: Sky Conference :header: Sky Conference
text: "Also in the fifth floor with great views is the sky conference room. It sits :text: "Also in the fifth floor with great views is the sky conference room. It
35 people as shown and up to 80 in a theatre arrangement.\r\n\r\nThere is a smaller sits 35 people as shown and up to 80 in a theatre arrangement.\r\n\r\nThere is
semi attached break room and two more break-out rooms next to it.\r\n\r\nGreat a smaller semi attached break room and two more break-out rooms next to it.\r\n\r\nGreat
for meetings of any sort." for meetings of any sort."
image: sky_conference :image: sky_conference
options: :options:
background: light_orange background: light_orange
align: center align: center
color: none color: none
subheader: 35 - 80 subheader: 35 - 80
updated_at: *3 :updated_at: *3
section_id: 15 :section_id: 15
index: 3 :index: 3
- id: 21 - :id: 21
header: Lootus room :header: Lootus room
text: "Downstairs, next to the café, the spacious lotus room is especially good :text: "Downstairs, next to the café, the spacious lotus room is especially good
for day events. 20 Yogi or dancers fit easily into the 70m2 and for group work for day events. 20 Yogi or dancers fit easily into the 70m2 and for group work
30 is still good.\r\n\r\nCan be rented on hourly basis." 30 is still good.\r\n\r\nCan be rented on hourly basis."
image: lotus_room :image: lotus_room
options: :options:
background: light_orange background: light_orange
align: center align: center
color: none color: none
subheader: 15 - 30 subheader: 15 - 30
updated_at: *3 :updated_at: *3
section_id: 15 :section_id: 15
index: 4 :index: 4
- id: 22 - :id: 22
header: Earth room :header: Earth room
text: "On the ground floor (with a clay plastered wall)\r\n\r\nthe earth room is :text: "On the ground floor (with a clay plastered wall)\r\n\r\nthe earth room is
great for groups wanting privacy. It's 50m2, with accommodation on the same floor, great for groups wanting privacy. It's 50m2, with accommodation on the same floor,
sits up to 25 people either with or without tables." sits up to 25 people either with or without tables."
image: earth_room :image: earth_room
options: :options:
background: none background: none
align: center align: center
color: none color: none
subheader: 10 - 25 subheader: 10 - 25
updated_at: *3 :updated_at: *3
section_id: 15 :section_id: 15
index: 5 :index: 5
- id: 23 - :id: 23
header: The Loft :header: The Loft
text: "For smaller groups, we have many 40 m2 rooms, depending on the needs. Dancing, :text: "For smaller groups, we have many 40 m2 rooms, depending on the needs. Dancing,
yoga, theatre practise, group work.\r\nThe room shown is especially cosy (a roof yoga, theatre practise, group work.\r\nThe room shown is especially cosy (a roof
extension), and accommodates about 12 yogi or 15 sitting. Also available per hour." extension), and accommodates about 12 yogi or 15 sitting. Also available per hour."
image: loft_room :image: loft_room
options: :options:
background: light_grey background: light_grey
align: center align: center
color: none color: none
subheader: 8-15 subheader: 8-15
updated_at: *3 :updated_at: *3
section_id: 15 :section_id: 15
index: 6 :index: 6
- id: 24 - :id: 24
header: Name :header: Name
text: '' :text: ''
updated_at: *3 :updated_at: *3
section_id: 24 :section_id: 24
index: 1 :index: 1
- id: 25 - :id: 25
header: Email :header: Email
text: '' :text: ''
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: email form_type: email
updated_at: *3 :updated_at: *3
section_id: 24 :section_id: 24
index: 2 :index: 2
- id: 26 - :id: 26
header: Phone :header: Phone
text: '' :text: ''
updated_at: *3 :updated_at: *3
section_id: 24 :section_id: 24
index: 3 :index: 3
- id: 27 - :id: 27
header: Event Type :header: Event Type
text: '' :text: ''
updated_at: *3 :updated_at: *3
section_id: 24 :section_id: 24
index: 4 :index: 4
- id: 28 - :id: 28
header: Number of participants :header: Number of participants
text: '' :text: ''
updated_at: *3 :updated_at: *3
section_id: 24 :section_id: 24
index: 5 :index: 5
- id: 29 - :id: 29
header: Date :header: Date
text: '' :text: ''
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: date form_type: date
updated_at: *3 :updated_at: *3
section_id: 24 :section_id: 24
index: 6 :index: 6
- id: 30 - :id: 30
header: Message :header: Message
text: '' :text: ''
options: :options:
compulsory: 'no' compulsory: 'no'
form_type: message form_type: message
updated_at: *3 :updated_at: *3
section_id: 24 :section_id: 24
index: 7 :index: 7
- id: 31 - :id: 31
header: Floating desk :header: Floating desk
text: "Come anytime and work on any of the available desk. We have 30 places in :text: "Come anytime and work on any of the available desk. We have 30 places in
two rooms, with mixed normal desks, high desks, standing places and bean bags.\r\nAlso two rooms, with mixed normal desks, high desks, standing places and bean bags.\r\nAlso
possible per day, 10e." possible per day, 10e."
options: :options:
background: solid_blue background: solid_blue
color: white color: white
order: left order: left
align: center align: center
subheader: 120 / month subheader: 120 / month
image: floating_office_small :image: floating_office_small
updated_at: &4 2022-12-09 18:00:01.444815664 +02:00 :updated_at: &4 2022-12-09 18:00:01.444815664 +02:00
section_id: 26 :section_id: 26
index: 1 :index: 1
- id: 32 - :id: 32
header: Single office :header: Single office
text: If you need the quiet, or require safe shelf space, rent your own private :text: If you need the quiet, or require safe shelf space, rent your own private
office. We provide desk, chair, shelves and wifi office. We provide desk, chair, shelves and wifi
options: :options:
background: solid_blue background: solid_blue
color: white color: white
order: right order: right
align: center align: center
subheader: 200 / month subheader: 200 / month
image: single_office_small :image: single_office_small
updated_at: *4 :updated_at: *4
section_id: 26 :section_id: 26
index: 2 :index: 2
- id: 33 - :id: 33
header: Double office :header: Double office
text: "Double offices are slightly larger than the singles, but also come furnished :text: "Double offices are slightly larger than the singles, but also come furnished
to your needs.\r\n" to your needs.\r\n"
options: :options:
background: solid_blue background: solid_blue
color: white color: white
order: left order: left
align: center align: center
subheader: 350 / month subheader: 350 / month
image: double_office_small :image: double_office_small
updated_at: *4 :updated_at: *4
section_id: 26 :section_id: 26
index: 3 :index: 3
- id: 34 - :id: 34
header: Name :header: Name
text: '' :text: ''
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: text form_type: text
updated_at: *4 :updated_at: *4
section_id: 27 :section_id: 27
index: 1 :index: 1
- id: 35 - :id: 35
header: Email :header: Email
text: '' :text: ''
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: email form_type: email
updated_at: *4 :updated_at: *4
section_id: 27 :section_id: 27
index: 2 :index: 2
- id: 36 - :id: 36
header: Phone :header: Phone
text: '' :text: ''
options: :options:
compulsory: 'no' compulsory: 'no'
form_type: phone form_type: phone
updated_at: *4 :updated_at: *4
section_id: 27 :section_id: 27
index: 3 :index: 3
- id: 37 - :id: 37
header: Space :header: Space
text: '' :text: ''
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: text form_type: text
updated_at: *4 :updated_at: *4
section_id: 27 :section_id: 27
index: 4 :index: 4
- id: 38 - :id: 38
header: Message :header: Message
text: '' :text: ''
options: :options:
compulsory: 'no' compulsory: 'no'
form_type: message form_type: message
updated_at: *4 :updated_at: *4
section_id: 27 :section_id: 27
index: 5 :index: 5
- id: 39 - :id: 39
header: Cafe :header: Cafe
text: Our cafe serves vegan and vegetarian light food and great tea and coffee. :text: Our cafe serves vegan and vegetarian light food and great tea and coffee.
image: service_cafe :image: service_cafe
options: :options:
background: light_gray background: light_gray
color: solid_blue color: solid_blue
align: center align: center
subheader: '' subheader: ''
updated_at: &5 2022-12-10 20:28:17.967357225 +02:00 :updated_at: &5 2022-12-10 20:28:17.967357225 +02:00
section_id: 39 :section_id: 39
index: 1 :index: 1
- id: 40 - :id: 40
header: Treatments :header: Treatments
text: In our healery you can get professional help from osteopathy, shiatsu, acupuncture :text: In our healery you can get professional help from osteopathy, shiatsu, acupuncture
and more. and more.
image: service_treatments :image: service_treatments
options: :options:
background: light_gray background: light_gray
color: solid_blue color: solid_blue
align: center align: center
subheader: '' subheader: ''
updated_at: *5 :updated_at: *5
section_id: 39 :section_id: 39
index: 2 :index: 2
- id: 41 - :id: 41
header: Boutique and Gallery :header: Boutique and Gallery
text: In our Boutique, you can find organic cosmetics, buy our great hub feenix :text: In our Boutique, you can find organic cosmetics, buy our great hub feenix
teas to take home and find inspirational art from our artists. teas to take home and find inspirational art from our artists.
image: service_boutique :image: service_boutique
options: :options:
background: light_gray background: light_gray
color: solid_blue color: solid_blue
align: center align: center
subheader: '' subheader: ''
updated_at: *5 :updated_at: *5
section_id: 39 :section_id: 39
index: 3 :index: 3
- id: 42 - :id: 42
header: Name :header: Name
text: '' :text: ''
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: text form_type: text
updated_at: *5 :updated_at: *5
section_id: 40 :section_id: 40
index: 1 :index: 1
- id: 43 - :id: 43
header: Email :header: Email
text: '' :text: ''
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: text form_type: text
updated_at: *5 :updated_at: *5
section_id: 40 :section_id: 40
index: 2 :index: 2
- id: 44 - :id: 44
header: Phone :header: Phone
text: '' :text: ''
options: :options:
compulsory: 'no' compulsory: 'no'
form_type: text form_type: text
updated_at: *5 :updated_at: *5
section_id: 40 :section_id: 40
index: 3 :index: 3
- id: 45 - :id: 45
header: Subject :header: Subject
text: TEXT :text: TEXT
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: text form_type: text
updated_at: *5 :updated_at: *5
section_id: 40 :section_id: 40
index: 4 :index: 4
- id: 46 - :id: 46
header: Message :header: Message
text: '' :text: ''
options: :options:
compulsory: 'yes' compulsory: 'yes'
form_type: message form_type: message
updated_at: *5 :updated_at: *5
section_id: 40 :section_id: 40
index: 5 :index: 5

View File

@ -1,13 +1,19 @@
--- ---
- :name: makerspace - :name: makerspace
:updated_at: 2022-12-09 17:56:51.141334688 +02:00 :updated_at: 2022-12-09 17:56:51.141334688 +02:00
:id: 1
- :name: studios - :name: studios
:updated_at: 2022-12-09 17:50:02.733622073 +02:00 :updated_at: 2022-12-09 17:50:02.733622073 +02:00
:id: 2
- :name: retreats - :name: retreats
:updated_at: 2022-12-09 17:32:41.538163009 +02:00 :updated_at: 2022-12-09 17:32:41.538163009 +02:00
:id: 3
- :name: coworking - :name: coworking
:updated_at: 2022-12-09 18:00:01.444815664 +02:00 :updated_at: 2022-12-09 18:00:01.444815664 +02:00
:id: 4
- :name: about - :name: about
:updated_at: 2022-12-08 19:11:48.243621696 +02:00 :updated_at: 2022-12-08 19:11:48.243621696 +02:00
:id: 5
- :name: index - :name: index
:updated_at: 2022-12-10 20:28:17.967357225 +02:00 :updated_at: 2022-12-10 20:28:17.967357225 +02:00
:id: 6

View File

@ -1,7 +1,7 @@
--- ---
- template: section_half_image - :template: section_half_image
header: Makerspace :header: Makerspace
text: "Makerspace\r\n\r\nThe makers movement is transforming consumers into creaters. :text: "Makerspace\r\n\r\nThe makers movement is transforming consumers into creaters.
By sharing otherwise expensive tools, it allows everyone to start exploring and By sharing otherwise expensive tools, it allows everyone to start exploring and
producing through otherwise inaccessible means.\r\nIn Finland this builds on the producing through otherwise inaccessible means.\r\nIn Finland this builds on the
traditional adult education and expands it into new technologies like electronics traditional adult education and expands it into new technologies like electronics
@ -9,135 +9,136 @@
woodworking, sowing, and metalworking. And we will expand into electronics and woodworking, sowing, and metalworking. And we will expand into electronics and
3d technologies as funding starts coming. (See wish-list below if you want to 3d technologies as funding starts coming. (See wish-list below if you want to
help)" help)"
image: makerspace :image: makerspace
id: 1 :id: 1
updated_at: &1 2022-12-09 17:56:51.141334688 +02:00 :updated_at: &1 2022-12-09 17:56:51.141334688 +02:00
page_id: makerspace :page_id: 1
index: 1 :index: 1
- template: section_full_up :options: {}
id: 2 - :template: section_full_up
header: Different workshops :id: 2
text: "Some of the machines, but all of the spaces described here exists. Also courses :header: Different workshops
for all the activities will be part of a shared future, and if you have something :text: "Some of the machines, but all of the spaces described here exists. Also
to contribute (or teach) contact us.\r\nIf you want to use any of the facilities, courses for all the activities will be part of a shared future, and if you have
see below." something to contribute (or teach) contact us.\r\nIf you want to use any of the
options: facilities, see below."
:options:
background: light_gray background: light_gray
color: black color: black
margin: '0' margin: '0'
subheader: Sharing machines and experiences subheader: Sharing machines and experiences
button_link: '' button_link: ''
button_text: '' button_text: ''
updated_at: *1 :updated_at: *1
page_id: makerspace :page_id: 1
index: 2 :index: 2
- template: section_large_image - :template: section_large_image
id: 3 :id: 3
header: 3D :header: 3D
text: "We have 2 3d printers, one small, on large, to allow everyone to try to bring :text: "We have 2 3d printers, one small, on large, to allow everyone to try to
their imagination to the physical world.\r\nAdditionally to hard and soft plastics, bring their imagination to the physical world.\r\nAdditionally to hard and soft
3d printers can be used to print aluminium and carbon fibre to produce usable plastics, 3d printers can be used to print aluminium and carbon fibre to produce
machine parts.\r\nComputers and software for designing are available." usable machine parts.\r\nComputers and software for designing are available."
options: :options:
subheader: Printing, scanning and planning subheader: Printing, scanning and planning
order: left order: left
color: black color: black
background: light_gray background: light_gray
margin: '0' margin: '0'
image: 3dprinter_wide :image: 3dprinter_wide
updated_at: *1 :updated_at: *1
page_id: makerspace :page_id: 1
index: 3 :index: 3
- template: section_large_image - :template: section_large_image
id: 4 :id: 4
header: Clothes :header: Clothes
text: "The thrid floor makerspace already has some sowing machines and will get :text: "The thrid floor makerspace already has some sowing machines and will get
more. We are sourcing industrial sawing and embroidering machines so no project more. We are sourcing industrial sawing and embroidering machines so no project
is too big (or small). The large rooms is set up for a shared working environment, is too big (or small). The large rooms is set up for a shared working environment,
enabling knowledge to be shared easily.\r\nPrivate lockers make it easy to interrupt enabling knowledge to be shared easily.\r\nPrivate lockers make it easy to interrupt
and return to your project in your own time." and return to your project in your own time."
image: sowing_wide :image: sowing_wide
options: :options:
subheader: Express your style subheader: Express your style
order: right order: right
color: none color: none
background: light_gray background: light_gray
margin: '0' margin: '0'
updated_at: *1 :updated_at: *1
page_id: makerspace :page_id: 1
index: 4 :index: 4
- template: section_large_image - :template: section_large_image
id: 5 :id: 5
header: Metal workshop and garage :header: Metal workshop and garage
text: "The building has a garage workshop and we will move our metal workshop there. :text: "The building has a garage workshop and we will move our metal workshop there.
There is a saw, drills, different welders (gas, stick, mig) and wrenches to allow There is a saw, drills, different welders (gas, stick, mig) and wrenches to allow
members to build the robot of their dreams, or fix their car.\r\nSmaller side members to build the robot of their dreams, or fix their car.\r\nSmaller side
rooms allow for private and more detailed work, and we are looking to get a lathe, rooms allow for private and more detailed work, and we are looking to get a lathe,
possibly also a cnc machine." possibly also a cnc machine."
image: metal_wide :image: metal_wide
options: :options:
subheader: Useful and practical subheader: Useful and practical
margin: '0' margin: '0'
order: left order: left
color: none color: none
background: light_gray background: light_gray
updated_at: *1 :updated_at: *1
page_id: makerspace :page_id: 1
index: 5 :index: 5
- template: section_large_image - :template: section_large_image
id: 6 :id: 6
header: Electronics :header: Electronics
text: "This is in the third floor, set up as a basic electronics workshop.\r\nCurrently :text: "This is in the third floor, set up as a basic electronics workshop.\r\nCurrently
we only have a soldering iron and a lab power source, but we are hoping to buy we only have a soldering iron and a lab power source, but we are hoping to buy
oscilloscopes and other measuring equipment that will allow members to do everything oscilloscopes and other measuring equipment that will allow members to do everything
from a small LED project to arduino or raspberry pi based robots." from a small LED project to arduino or raspberry pi based robots."
image: electronics_wide :image: electronics_wide
options: :options:
subheader: Wizz wizz wizz subheader: Wizz wizz wizz
margin: '0' margin: '0'
order: right order: right
color: none color: none
background: light_gray background: light_gray
updated_at: *1 :updated_at: *1
page_id: makerspace :page_id: 1
index: 6 :index: 6
- template: section_large_image - :template: section_large_image
id: 7 :id: 7
header: Clay :header: Clay
text: Hub Feenix is looking to buy a clay oven, and set aside one or two wet spaces :text: Hub Feenix is looking to buy a clay oven, and set aside one or two wet spaces
for clay work. Both free form sculpturing and table turning facilities will be for clay work. Both free form sculpturing and table turning facilities will be
available for hobbyists to try their hand at clay. available for hobbyists to try their hand at clay.
image: clay_wide :image: clay_wide
options: :options:
subheader: Sculptured or turned subheader: Sculptured or turned
margin: '0' margin: '0'
order: left order: left
color: none color: none
background: light_gray background: light_gray
updated_at: *1 :updated_at: *1
page_id: makerspace :page_id: 1
index: 7 :index: 7
- template: section_large_image - :template: section_large_image
id: 8 :id: 8
header: Woodworking :header: Woodworking
text: "We have a full woodworking workshop, we just need to move the machines to :text: "We have a full woodworking workshop, we just need to move the machines to
Hub Feenix.\r\n\r\nWe will make this available to trained members on an hourly Hub Feenix.\r\n\r\nWe will make this available to trained members on an hourly
basis much like nikkariverstas in Espoo.\r\n\r\nThe workshop will have all large basis much like nikkariverstas in Espoo.\r\n\r\nThe workshop will have all large
machines (as in the picture) and a separate hand tool for smaller projects." machines (as in the picture) and a separate hand tool for smaller projects."
image: woodworking_wide :image: woodworking_wide
options: :options:
subheader: '' subheader: ''
margin: '0' margin: '0'
order: right order: right
color: none color: none
background: light_gray background: light_gray
updated_at: *1 :updated_at: *1
page_id: makerspace :page_id: 1
index: 8 :index: 8
- template: form_section - :template: form_section
id: 9 :id: 9
card_template: form_field :card_template: form_field
cards: :cards:
- id: 1 - id: 1
header: Name header: Name
text: '' text: ''
@ -180,8 +181,8 @@
updated_at: *1 updated_at: *1
section_id: 9 section_id: 9
index: 5 index: 5
header: Participate :header: Participate
text: "If you want to use any of the facilities or machines listed above, you need :text: "If you want to use any of the facilities or machines listed above, you need
to be a member of the coop. This requires a small fee and a certain amount of to be a member of the coop. This requires a small fee and a certain amount of
participation in general tasks.\r\n\r\nAdditionally some machines will require participation in general tasks.\r\n\r\nAdditionally some machines will require
skill to operate, and you need to prove that you are able, possibly participate skill to operate, and you need to prove that you are able, possibly participate
@ -191,41 +192,41 @@
already, or be notified when a certain facility is ready, fill the form below.\r\n\r\nIf already, or be notified when a certain facility is ready, fill the form below.\r\n\r\nIf
you want to stay informed about planned meetings, courses and happening, join you want to stay informed about planned meetings, courses and happening, join
the Makers forum here.\r\n" the Makers forum here.\r\n"
options: :options:
ok_message: '' ok_message: ''
handler: FormHandler handler: FormHandler
background: light_orange background: light_orange
color: solid_black color: solid_black
updated_at: *1 :updated_at: *1
page_id: makerspace :page_id: 1
index: 9 :index: 9
- template: section_half_image - :template: section_half_image
id: 10 :id: 10
header: Studios :header: Studios
text: Hub Feenix is a place to create together. A community of artists and makers. :text: Hub Feenix is a place to create together. A community of artists and makers.
Several floors of the building are reserved for artist studios. Some creative Several floors of the building are reserved for artist studios. Some creative
activities that require large equipment (presses, ovens) overlap strongly with activities that require large equipment (presses, ovens) overlap strongly with
the Makers idea. Have a look at the rooms available and tell us what you need. the Makers idea. Have a look at the rooms available and tell us what you need.
image: studios :image: studios
options: :options:
button_link: '' button_link: ''
button_text: '' button_text: ''
order: left order: left
background: white background: white
updated_at: &2 2022-12-09 17:50:02.733622073 +02:00 :updated_at: &2 2022-12-09 17:50:02.733622073 +02:00
page_id: studios :page_id: 2
index: 1 :index: 1
- template: section_cards - :template: section_cards
header: Sizes and kinds :header: Sizes and kinds
text: We offer different sizes and different types of studios for artists. There :text: We offer different sizes and different types of studios for artists. There
large and small rooms, with more or less light, also rooms with tiles for wet-work. large and small rooms, with more or less light, also rooms with tiles for wet-work.
The rooms are in the old hospital wings, so most are old patient rooms, but there The rooms are in the old hospital wings, so most are old patient rooms, but there
are plenty of others too. Prices do not include electricity or vat, but do include are plenty of others too. Prices do not include electricity or vat, but do include
the use of common spaces, see below. the use of common spaces, see below.
image: :image:
id: 11 :id: 11
card_template: card_full_image :card_template: card_full_image
cards: :cards:
- header: Standard - header: Standard
text: This is the standard two patient room. They are mostly towards the south, text: This is the standard two patient room. They are mostly towards the south,
so may have great, or too much light, depending on how you see it. The size so may have great, or too much light, depending on how you see it. The size
@ -278,18 +279,18 @@
updated_at: *2 updated_at: *2
section_id: 11 section_id: 11
index: 4 index: 4
options: :options:
button_link: '' button_link: ''
button_text: '' button_text: ''
background: light_blue background: light_blue
columns: '2' columns: '2'
updated_at: *2 :updated_at: *2
page_id: studios :page_id: 2
index: 2 :index: 2
- template: section_cards - :template: section_cards
id: 12 :id: 12
card_template: card_normal_square :card_template: card_normal_square
cards: :cards:
- id: 10 - id: 10
header: Common spaces header: Common spaces
text: Each floor has it's own large common space. Also, Hub Feenix offers great text: Each floor has it's own large common space. Also, Hub Feenix offers great
@ -324,21 +325,21 @@
updated_at: *2 updated_at: *2
section_id: 12 section_id: 12
index: 3 index: 3
header: Included :header: Included
text: The studios offer a unique environment both in terms of fellow beings, and :text: The studios offer a unique environment both in terms of fellow beings, and
the spaces around. the spaces around.
options: :options:
background: white background: white
columns: '3' columns: '3'
button_link: '' button_link: ''
button_text: '' button_text: ''
updated_at: *2 :updated_at: *2
page_id: studios :page_id: 2
index: 3 :index: 3
- template: form_section - :template: form_section
id: 13 :id: 13
card_template: form_field :card_template: form_field
cards: :cards:
- id: 13 - id: 13
header: Name header: Name
text: '' text: ''
@ -381,25 +382,25 @@
updated_at: *2 updated_at: *2
section_id: 13 section_id: 13
index: 5 index: 5
options: :options:
ok_message: Ok ok_message: Ok
handler: FormHandler handler: FormHandler
background: light_orange background: light_orange
color: none color: none
header: The deal :header: The deal
text: "Hub Feenix is not just renting space, we are looking to build a community :text: "Hub Feenix is not just renting space, we are looking to build a community
of active, participating creatives.\r\n\r\nCheck out the MakerSpace facilities of active, participating creatives.\r\n\r\nCheck out the MakerSpace facilities
as well" as well"
updated_at: *2 :updated_at: *2
page_id: studios :page_id: 2
index: 4 :index: 4
- template: section_half_image - :template: section_half_image
id: 14 :id: 14
header: Retreats :header: Retreats
text: "Hub Feenix is a beautiful place, ideally situated in the country, but close :text: "Hub Feenix is a beautiful place, ideally situated in the country, but close
to Helsinki. We have different sized studios and spaces, to organise retreats to Helsinki. We have different sized studios and spaces, to organise retreats
for groups from 10, up to 100 people.\r\n" for groups from 10, up to 100 people.\r\n"
options: :options:
button_link: '' button_link: ''
button_text: '' button_text: ''
order: left order: left
@ -409,14 +410,14 @@
your stay enjoyable also outside the course program." your stay enjoyable also outside the course program."
align: center align: center
color: solid_blue color: solid_blue
image: retreats :image: retreats
updated_at: &3 2022-12-09 17:32:41.538163009 +02:00 :updated_at: &3 2022-12-09 17:32:41.538163009 +02:00
page_id: retreats :page_id: 3
index: 1 :index: 1
- template: section_cards - :template: section_cards
id: 15 :id: 15
card_template: card_normal_square :card_template: card_normal_square
cards: :cards:
- id: 18 - id: 18
header: The Hall header: The Hall
text: Our beautiful hall, one of the largest in the area, is 8 x 20m and can accommodate text: Our beautiful hall, one of the largest in the area, is 8 x 20m and can accommodate
@ -503,127 +504,127 @@
updated_at: *3 updated_at: *3
section_id: 15 section_id: 15
index: 6 index: 6
header: Spaces :header: Spaces
text: For different size groups and needs :text: For different size groups and needs
options: :options:
background: light_orange background: light_orange
columns: '3' columns: '3'
button_link: '' button_link: ''
button_text: '' button_text: ''
color: solid_blue color: solid_blue
align: center align: center
updated_at: *3 :updated_at: *3
page_id: retreats :page_id: 3
index: 2 :index: 2
- template: section_full_up - :template: section_full_up
id: 16 :id: 16
header: Accommodation :header: Accommodation
text: We have three wings set aside to accommodate retreat participants. Each wing :text: We have three wings set aside to accommodate retreat participants. Each wing
can accommodate up to 32 people, and spare beds (and rooms) are available. can accommodate up to 32 people, and spare beds (and rooms) are available.
updated_at: *3 :updated_at: *3
page_id: retreats :page_id: 3
index: 3 :index: 3
- template: section_full_image - :template: section_full_image
id: 17 :id: 17
image: suites_wide :image: suites_wide
header: Suites :header: Suites
text: Suites are single occupancy and have en-suite toilet and shower. :text: Suites are single occupancy and have en-suite toilet and shower.
options: :options:
fixed: 'off' fixed: 'off'
shade_color: solid_blue_25 shade_color: solid_blue_25
color: white color: white
align: right align: right
updated_at: *3 :updated_at: *3
page_id: retreats :page_id: 3
index: 4 :index: 4
- template: section_full_image - :template: section_full_image
id: 18 :id: 18
header: Shared room :header: Shared room
text: "Shared rooms have double occupancy but their own bathroom with toilet and :text: "Shared rooms have double occupancy but their own bathroom with toilet and
shower.\r\n" shower.\r\n"
image: shared_wide :image: shared_wide
options: :options:
fixed: 'off' fixed: 'off'
color: white color: white
align: left align: left
shade_color: solid_red_25 shade_color: solid_red_25
updated_at: *3 :updated_at: *3
page_id: retreats :page_id: 3
index: 5 :index: 5
- template: section_full_image - :template: section_full_image
id: 19 :id: 19
header: Common room :header: Common room
text: Common rooms have either two or four beds and shared facilities. Rooms with :text: Common rooms have either two or four beds and shared facilities. Rooms with
two beds will often share the bathroom with another room. Some rooms have shared two beds will often share the bathroom with another room. Some rooms have shared
facilities on the corridor. facilities on the corridor.
image: common_wide :image: common_wide
options: :options:
fixed: 'off' fixed: 'off'
color: white color: white
align: center align: center
shade_color: black_25 shade_color: black_25
updated_at: *3 :updated_at: *3
page_id: retreats :page_id: 3
index: 6 :index: 6
- template: section_full_up - :template: section_full_up
id: 20 :id: 20
header: Common services for retreats :header: Common services for retreats
text: Relax outside the course program :text: Relax outside the course program
options: :options:
background: light_orange background: light_orange
color: solid_blue color: solid_blue
button_link: '' button_link: ''
button_text: '' button_text: ''
margin: '0' margin: '0'
updated_at: *3 :updated_at: *3
page_id: retreats :page_id: 3
index: 7 :index: 7
- template: section_large_image - :template: section_large_image
id: 21 :id: 21
image: common_spaces_wide :image: common_spaces_wide
options: :options:
fixed: 'on' fixed: 'on'
color: solid_blue color: solid_blue
align: left align: left
background: light_orange background: light_orange
header: Common spaces :header: Common spaces
text: Enjoy the free time in between learning. Several common spaces, like in the :text: Enjoy the free time in between learning. Several common spaces, like in the
picture, terraces and the cafe make a relaxed atmosphere. picture, terraces and the cafe make a relaxed atmosphere.
updated_at: *3 :updated_at: *3
page_id: retreats :page_id: 3
index: 8 :index: 8
- template: section_large_image - :template: section_large_image
id: 22 :id: 22
image: food_area :image: food_area
header: Great Food :header: Great Food
text: Healthy plant-based food keeps you going between session. The dining hall :text: Healthy plant-based food keeps you going between session. The dining hall
is conveniently situated next to the hall, so smaller breaks don't stop your flow. is conveniently situated next to the hall, so smaller breaks don't stop your flow.
options: :options:
fixed: 'on' fixed: 'on'
color: solid_blue color: solid_blue
align: left align: left
background: light_orange background: light_orange
order: right order: right
updated_at: *3 :updated_at: *3
page_id: retreats :page_id: 3
index: 9 :index: 9
- template: section_large_image - :template: section_large_image
id: 23 :id: 23
image: nature_around :image: nature_around
header: Nature around :header: Nature around
text: Enjoy your spare time by walking around in the surrounding forest. Or (in :text: Enjoy your spare time by walking around in the surrounding forest. Or (in
the summer) go swimming in the nearby lake. the summer) go swimming in the nearby lake.
options: :options:
order: left order: left
color: solid_blue color: solid_blue
background: light_orange background: light_orange
updated_at: *3 :updated_at: *3
page_id: retreats :page_id: 3
index: 10 :index: 10
- template: form_section - :template: form_section
id: 24 :id: 24
card_template: form_field :card_template: form_field
cards: :cards:
- id: 24 - id: 24
header: Name header: Name
text: '' text: ''
@ -675,25 +676,25 @@
updated_at: *3 updated_at: *3
section_id: 24 section_id: 24
index: 7 index: 7
header: Start planning now :header: Start planning now
text: We create custom packages for your specific needs. Just tell us what you are :text: We create custom packages for your specific needs. Just tell us what you
planning, for how many people and we will create a solution for you. are planning, for how many people and we will create a solution for you.
options: :options:
ok_message: '' ok_message: ''
handler: FormHandler handler: FormHandler
background: light_gray background: light_gray
color: solid_blue color: solid_blue
updated_at: *3 :updated_at: *3
page_id: retreats :page_id: 3
index: 11 :index: 11
- template: section_half_image - :template: section_half_image
id: 25 :id: 25
header: Coworking and offices :header: Coworking and offices
text: "We have various spaces for co-working and offices. You can just come for :text: "We have various spaces for co-working and offices. You can just come for
the odd afternoon and work in a shared environment. Or rent your own office, single the odd afternoon and work in a shared environment. Or rent your own office, single
or double.\r\n" or double.\r\n"
image: coworking_office :image: coworking_office
options: :options:
order: left order: left
background: white background: white
color: solid_blue color: solid_blue
@ -702,13 +703,13 @@
align: center align: center
button_link: '' button_link: ''
button_text: '' button_text: ''
updated_at: &4 2022-12-09 18:00:01.444815664 +02:00 :updated_at: &4 2022-12-09 18:00:01.444815664 +02:00
page_id: coworking :page_id: 4
index: 1 :index: 1
- template: section_cards - :template: section_cards
id: 26 :id: 26
card_template: card_gap_square :card_template: card_gap_square
cards: :cards:
- id: 31 - id: 31
header: Floating desk header: Floating desk
text: "Come anytime and work on any of the available desk. We have 30 places in text: "Come anytime and work on any of the available desk. We have 30 places in
@ -752,21 +753,21 @@
updated_at: *4 updated_at: *4
section_id: 26 section_id: 26
index: 3 index: 3
header: Relax, connect and work :header: Relax, connect and work
text: "Relaxed work environments have been shown to be more productive. Working :text: "Relaxed work environments have been shown to be more productive. Working
in different places and positions, even a bit of background noise, helps creativity in different places and positions, even a bit of background noise, helps creativity
and thus work.\r\nAnd then enjoy a good coffee in our nice cafe." and thus work.\r\nAnd then enjoy a good coffee in our nice cafe."
options: :options:
background: light_orange background: light_orange
columns: '3' columns: '3'
color: solid_blue color: solid_blue
updated_at: *4 :updated_at: *4
page_id: coworking :page_id: 4
index: 2 :index: 2
- template: form_section - :template: form_section
id: 27 :id: 27
card_template: form_field :card_template: form_field
cards: :cards:
- id: 34 - id: 34
header: Name header: Name
text: '' text: ''
@ -812,36 +813,36 @@
updated_at: *4 updated_at: *4
section_id: 27 section_id: 27
index: 5 index: 5
header: Join the working tribe :header: Join the working tribe
text: '' :text: ''
options: :options:
ok_message: '' ok_message: ''
handler: FormHandler handler: FormHandler
background: light_orange background: light_orange
color: solid_blue color: solid_blue
updated_at: *4 :updated_at: *4
page_id: coworking :page_id: 4
index: 3 :index: 3
- template: section_full_image - :template: section_full_image
id: 28 :id: 28
header: Hub Feenix :header: Hub Feenix
text: "Our Vision:\r\n\r\nArt, craft, music, yoga, dance, meditation, nature, and :text: "Our Vision:\r\n\r\nArt, craft, music, yoga, dance, meditation, nature, and
creatives of every kind come together under our roof in an atmosphere of openness creatives of every kind come together under our roof in an atmosphere of openness
and learning. \r\n\r\n \r\n\r\nWe are very much just starting, so make contact, and learning. \r\n\r\n \r\n\r\nWe are very much just starting, so make contact,
check later, or follow us on facebook." check later, or follow us on facebook."
options: :options:
fixed: 'off' fixed: 'off'
color: white color: white
align: left align: left
shade_color: solid_blue_25 shade_color: solid_blue_25
image: cafe_about :image: cafe_about
updated_at: &5 2022-12-08 19:11:48.243621696 +02:00 :updated_at: &5 2022-12-08 19:11:48.243621696 +02:00
page_id: about :page_id: 5
index: 1 :index: 1
- template: section_full_up - :template: section_full_up
id: 29 :id: 29
header: About Us :header: About Us
text: "Hub Feenix is a community space that fosters creativity, healing, and connection. :text: "Hub Feenix is a community space that fosters creativity, healing, and connection.
\r\nArt, craft, music, yoga, dance, meditation, nature, and creative people of \r\nArt, craft, music, yoga, dance, meditation, nature, and creative people of
all kinds come together under our roof in an atmosphere of openness and learning. all kinds come together under our roof in an atmosphere of openness and learning.
\r\n\r\nHub Feenix provides opportunities for creative people to live, work, learn, \r\n\r\nHub Feenix provides opportunities for creative people to live, work, learn,
@ -849,101 +850,101 @@
Finland forest. \r\n\r\nAs part of our commitment to ongoing connection and learning, Finland forest. \r\n\r\nAs part of our commitment to ongoing connection and learning,
Hub Feenix provides space for retreats, workshops, conferences, short- and long-term Hub Feenix provides space for retreats, workshops, conferences, short- and long-term
residencies, and other gatherings." residencies, and other gatherings."
options: :options:
background: light_orange background: light_orange
color: solid_blue color: solid_blue
margin: '0' margin: '0'
subheader: '' subheader: ''
button_link: '' button_link: ''
button_text: '' button_text: ''
updated_at: *5 :updated_at: *5
page_id: about :page_id: 5
index: 2 :index: 2
- template: section_full_image - :template: section_full_image
id: 30 :id: 30
header: '' :header: ''
text: "[Click here to open](https://duckduckgo.com/?t=ffab&q=H%C3%B6gbenintie+30%2C+10350+Meltola%2C+Raasepori&atb=v283-1&ia=web&iaxm=directions&end=what%3AH%25C3%25B6gbensv%25C3%25A4gen%252030%252C%252010350%2520Meltola%252C%2520Finland&transport=drive)" :text: "[Click here to open](https://duckduckgo.com/?t=ffab&q=H%C3%B6gbenintie+30%2C+10350+Meltola%2C+Raasepori&atb=v283-1&ia=web&iaxm=directions&end=what%3AH%25C3%25B6gbensv%25C3%25A4gen%252030%252C%252010350%2520Meltola%252C%2520Finland&transport=drive)"
image: map_wide :image: map_wide
options: :options:
fixed: 'on' fixed: 'on'
color: black color: black
align: center align: center
shade_color: none shade_color: none
updated_at: *5 :updated_at: *5
page_id: about :page_id: 5
index: 3 :index: 3
- template: section_full_image - :template: section_full_image
header: HUB FEENIX :header: HUB FEENIX
text: Only an hour west of Helsinki, the Feenix rises from an old sanatorium. The :text: Only an hour west of Helsinki, the Feenix rises from an old sanatorium. The
Hub is a place to create, learn and regenerate. Hub is a place to create, learn and regenerate.
image: house :image: house
id: 31 :id: 31
options: :options:
fixed: 'on' fixed: 'on'
shade_color: black_25 shade_color: black_25
color: solid_blue color: solid_blue
align: left align: left
updated_at: &6 2022-12-10 20:28:17.967357225 +02:00 :updated_at: &6 2022-12-10 20:28:17.967357225 +02:00
page_id: index :page_id: 6
index: 1 :index: 2
- template: section_spacer - :template: section_spacer
id: 32 :id: 32
updated_at: *6 :updated_at: *6
page_id: index :page_id: 6
index: 2 :index: 1
- template: section_half_image - :template: section_half_image
header: Retreats :header: Retreats
text: Hub Feenix is a beautiful place, ideally situated in the country, but close :text: Hub Feenix is a beautiful place, ideally situated in the country, but close
to Helsinki. We have different sized studios and spaces, to organise retreats to Helsinki. We have different sized studios and spaces, to organise retreats
for up to 100 people. for up to 100 people.
options: :options:
button_text: Retreats button_text: Retreats
button_link: retreats button_link: retreats
order: left order: left
background: solid_blue background: solid_blue
image: retreats :image: retreats
id: 33 :id: 33
updated_at: *6 :updated_at: *6
page_id: index :page_id: 6
index: 3 :index: 3
- template: section_half_image - :template: section_half_image
header: Studios :header: Studios
text: We offer different size and different type of studios for artists. There are :text: We offer different size and different type of studios for artists. There
large and small rooms, with more or less light, also rooms with tiles for wetwork, are large and small rooms, with more or less light, also rooms with tiles for
small dance studios etc. wetwork, small dance studios etc.
options: :options:
order: right order: right
button_link: '' button_link: ''
button_text: '' button_text: ''
background: solid_blue background: solid_blue
image: studios :image: studios
id: 34 :id: 34
updated_at: *6 :updated_at: *6
page_id: index :page_id: 6
index: 4 :index: 4
- template: section_half_image - :template: section_half_image
header: Makerspace :header: Makerspace
text: The hub encourages all people to be creative in any way they choose. We provide :text: The hub encourages all people to be creative in any way they choose. We provide
facilities from more traditional sowing and woodworking, to modern 3d printers facilities from more traditional sowing and woodworking, to modern 3d printers
and electronics lab. and electronics lab.
options: :options:
button_text: Makerspace button_text: Makerspace
button_link: makerspace button_link: makerspace
order: left order: left
background: solid_blue background: solid_blue
image: makerspace :image: makerspace
id: 35 :id: 35
updated_at: *6 :updated_at: *6
page_id: index :page_id: 6
index: 5 :index: 5
- template: section_half_image - :template: section_half_image
id: 36 :id: 36
header: Coworking and offices :header: Coworking and offices
text: We have various spaces for co-working and office rent. You can just come for :text: We have various spaces for co-working and office rent. You can just come
the odd afternoon and work in a shared environment. Or rent your own office or for the odd afternoon and work in a shared environment. Or rent your own office
even wing, from 15 to 500 m2. or even wing, from 15 to 500 m2.
image: coworking_office :image: coworking_office
options: :options:
order: right order: right
background: solid_blue background: solid_blue
color: none color: none
@ -952,17 +953,17 @@
align: left align: left
button_link: coworking button_link: coworking
button_text: Coworking button_text: Coworking
updated_at: *6 :updated_at: *6
page_id: index :page_id: 6
index: 6 :index: 6
- template: section_half_image - :template: section_half_image
id: 37 :id: 37
header: Conferences and buisness events :header: Conferences and buisness events
text: We offer meeting rooms from 20-80 people, with breakout rooms for work-group :text: We offer meeting rooms from 20-80 people, with breakout rooms for work-group
discussions. High-speed internet, video projectors, break-out rooms, all you need discussions. High-speed internet, video projectors, break-out rooms, all you need
to organise your event. The cafe and surrounding nature make for ideal breaks. to organise your event. The cafe and surrounding nature make for ideal breaks.
image: conferences :image: conferences
options: :options:
order: left order: left
background: solid_blue background: solid_blue
color: none color: none
@ -971,18 +972,18 @@
align: left align: left
button_link: '' button_link: ''
button_text: '' button_text: ''
updated_at: *6 :updated_at: *6
page_id: index :page_id: 6
index: 7 :index: 7
- template: section_half_image - :template: section_half_image
id: 38 :id: 38
header: Residency and Accommodation :header: Residency and Accommodation
text: We offer short to medium term accommodation for several target groups. The :text: We offer short to medium term accommodation for several target groups. The
rooms are generally of a corridor, either with or without own toilet and shower. rooms are generally of a corridor, either with or without own toilet and shower.
This can suit artists who either rent a studio or use co-working facilities. But This can suit artists who either rent a studio or use co-working facilities. But
we also accept applications from people who are just between things. we also accept applications from people who are just between things.
image: residency_accomodation :image: residency_accomodation
options: :options:
order: right order: right
background: solid_blue background: solid_blue
color: none color: none
@ -991,13 +992,13 @@
align: left align: left
button_link: '' button_link: ''
button_text: '' button_text: ''
updated_at: *6 :updated_at: *6
page_id: index :page_id: 6
index: 8 :index: 8
- template: section_cards - :template: section_cards
id: 39 :id: 39
card_template: card_normal_square :card_template: card_normal_square
cards: :cards:
- id: 39 - id: 39
header: Cafe header: Cafe
text: Our cafe serves vegan and vegetarian light food and great tea and coffee. text: Our cafe serves vegan and vegetarian light food and great tea and coffee.
@ -1036,19 +1037,19 @@
updated_at: *6 updated_at: *6
section_id: 39 section_id: 39
index: 3 index: 3
header: Services :header: Services
text: '' :text: ''
options: :options:
background: solid_blue background: solid_blue
columns: '3' columns: '3'
color: none color: none
updated_at: *6 :updated_at: *6
page_id: index :page_id: 6
index: 9 :index: 9
- template: form_section - :template: form_section
id: 40 :id: 40
card_template: form_field :card_template: form_field
cards: :cards:
- id: 42 - id: 42
header: Name header: Name
text: '' text: ''
@ -1094,12 +1095,12 @@
updated_at: *6 updated_at: *6
section_id: 40 section_id: 40
index: 5 index: 5
header: Contact :header: Contact
text: "Högbenintie 30, 10350 Meltola, Raasepori\r\n\r\ninfo@hubfeenix.fi\r\n\r\n0505337881\r\n" :text: "Högbenintie 30, 10350 Meltola, Raasepori\r\n\r\ninfo@hubfeenix.fi\r\n\r\n0505337881\r\n"
options: :options:
background: white background: white
color: solid_blue color: solid_blue
ok_message: We'll get back to you ok_message: We'll get back to you
updated_at: *6 :updated_at: *6
page_id: index :page_id: 6
index: 10 :index: 10