diff --git a/app.rb b/app.rb
index 75641e5b..5c5bd875 100644
--- a/app.rb
+++ b/app.rb
@@ -31,7 +31,7 @@ end
get '/?' do
dashboard_if_signed_in
- erb :index
+ erb :index, layout: false
end
get '/browse' do
@@ -43,7 +43,15 @@ get '/browse' do
@page_count = site_dataset.page_count || 1
@sites = site_dataset.all
- slim :browse
+ erb :browse
+end
+
+get '/tutorials' do
+ erb :'tutorials'
+end
+
+get '/donate' do
+ erb :'donate'
end
get '/blog' do
@@ -130,7 +138,7 @@ get '/signout' do
end
get '/about' do
- slim :'about'
+ erb :'about'
end
get '/site_files/new_page' do
diff --git a/views/_header.erb b/views/_header.erb
new file mode 100644
index 00000000..fffb0516
--- /dev/null
+++ b/views/_header.erb
@@ -0,0 +1,50 @@
+
\ No newline at end of file
diff --git a/views/about.erb b/views/about.erb
new file mode 100644
index 00000000..10d6538e
--- /dev/null
+++ b/views/about.erb
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+ Help me keep the creative,
independent internet alive!
+
+
+ My goal with NeoCities is to help bring back the creativity and free expression to the world wide web that made it great. I need your help.
+
+
+ I am tired of living in an online world where people are isolated from each other in
+ boring, spied-on gated communities, and are given generic templates which define what people are
+ supposed to know about each other. It's time we took back our personalities from these sterilized, lifeless,
+ monetized, monitored entities and let our creativity flourish again.
+
+
+
+ That's where NeoCities comes in. I want to provide a canvas for people to make any web site they want.
+ Whether it be a web site about something they're good at, something they love, something they hate, or
+ their own custom "Profile" where they can introduce themselves in a way that actually matters to them.
+
+
+ It's a big project (to make small sites), and I have a lot of work to do.
+ But I can't do it without your help.
+
+
+ The technology has become affordable enough where we can provide this creative space without requiring a business
+ plan that involves selling people out to the marketing industry. But it still costs money, especially since server
+ demand is so high right now. And there are some possible surprise costs I haven't figured out yet (bandwidth estimates are difficult).
+ But if NeoCities can get enough donations, NeoCities can survive!
+ Together, we can prevent
+ what happened to GeoCities from happening again.
+
+
+ Our creativity is too important to be commercialized. Help keep this idea alive by donating! $100, $20, $5, a
+ free round of beers at your pub, speaking invites so we can spread the word, free server hosting, anything helps. Thank you!
+
+
+
+
+ Contributors:
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/views/browse.erb b/views/browse.erb
new file mode 100644
index 00000000..38ad4d37
--- /dev/null
+++ b/views/browse.erb
@@ -0,0 +1,6 @@
+
+
+
+ Help me keep the creative,
independent internet alive!
+
+
+ My goal with NeoCities is to help bring back the creativity and free expression to the world wide web that made it great. I need your help.
+
+
+ I am tired of living in an online world where people are isolated from each other in
+ boring, spied-on gated communities, and are given generic templates which define what people are
+ supposed to know about each other. It's time we took back our personalities from these sterilized, lifeless,
+ monetized, monitored entities and let our creativity flourish again.
+
+
+
+ That's where NeoCities comes in. I want to provide a canvas for people to make any web site they want.
+ Whether it be a web site about something they're good at, something they love, something they hate, or
+ their own custom "Profile" where they can introduce themselves in a way that actually matters to them.
+
+
+ It's a big project (to make small sites), and I have a lot of work to do.
+ But I can't do it without your help.
+
+
+ The technology has become affordable enough where we can provide this creative space without requiring a business
+ plan that involves selling people out to the marketing industry. But it still costs money, especially since server
+ demand is so high right now. And there are some possible surprise costs I haven't figured out yet (bandwidth estimates are difficult).
+ But if NeoCities can get enough donations, NeoCities can survive!
+ Together, we can prevent
+ what happened to GeoCities from happening again.
+
+
+ Our creativity is too important to be commercialized. Help keep this idea alive by donating! $100, $20, $5, a
+ free round of beers at your pub, speaking invites
+ (I put on a pretty good show)
+ so I can spread the word, free server hosting, anything helps. Thank you!
+
+
+
+
+ Contributors:
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/views/layout.erb b/views/layout.erb
new file mode 100644
index 00000000..60edba0f
--- /dev/null
+++ b/views/layout.erb
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+ Learn to Code!
+
+
+
+ We are currently building out our library of tutorials.
+
+
+
+ Until then, please check out the following links to get you started:
+
+
+
+
+
\ No newline at end of file