diff --git a/views/dashboard.slim b/views/dashboard.slim
index 606b86d3..ee13f9d7 100644
--- a/views/dashboard.slim
+++ b/views/dashboard.slim
@@ -16,73 +16,65 @@ javascript:
h1 Your Website
- current_site.file_list.each do |file|
- .row
- .span4
- - if file.ext == 'html' || file.ext == 'htm' || file.ext == 'txt' || file.ext == 'js' || file.ext == 'css' || file.ext == 'md'
- span
- #{file.filename}
- - if file.filename == 'index.html'
- p.tiny
- This is your index file! It is the "default file" that loads when you go to #{current_site.username}.neocities.org. In effect, it's your front page. If you want to change your front page, you need to edit (or overwrite) this file. The default file is always named index.html.
-
- div style="margin-bottom:30px"
- span
- i class="icon-globe"
-
- a href="http://#{current_site.username}.neocities.org/#{file.filename}" target="_blank" View
- span
- i class="icon-edit"
- a href="/site_files/text_editor/#{file.filename}" Edit with text editor
- span
- i class="icon-edit"
- span Edit with visual editor (coming soon)
- span
- i class="icon-edit"
- span: a href="/site_files/download/#{file.filename}" Download
- span
- i class="icon-trash"
- a href="#" onclick="confirmFileDelete('#{file.filename}')" Delete
- - else
- #{file.filename}
- div style="margin-top: 3px; margin-bottom:10px"
- | To use in an HTML file, paste this text: <img src="/#{file.filename}">
- a href="http://#{current_site.username}.neocities.org/#{file.filename}" target="_blank" View
- a href="#" onclick="confirmFileDelete('#{file.filename}')" Delete
+ - if file.ext == 'html' || file.ext == 'htm' || file.ext == 'txt' || file.ext == 'js' || file.ext == 'css' || file.ext == 'md'
+ span
+ #{file.filename}
+ - if file.filename == 'index.html'
+ p.tiny
+ This is your index file! It is the "default file" that loads when you go to #{current_site.username}.neocities.org. In effect, it's your front page. If you want to change your front page, you need to edit (or overwrite) this file. The default file is always named index.html.
+
+ div style="margin-bottom:30px"
+ span
+ i class="icon-globe"
+ a href="http://#{current_site.username}.neocities.org/#{file.filename}" target="_blank" View
+ span
+ i class="icon-edit"
+ a href="/site_files/text_editor/#{file.filename}" Edit with text editor
+ span
+ i class="icon-edit"
+ span Edit with visual editor (coming soon)
+ span
+ i class="icon-edit"
+ span: a href="/site_files/download/#{file.filename}" Download
+ span
+ i class="icon-trash"
+ a href="#" onclick="confirmFileDelete('#{file.filename}')" Delete
+ - else
+ #{file.filename}
+ div style="margin-top: 3px; margin-bottom:10px"
+ | To use in an HTML file, paste this text: <img src="/#{file.filename}">
+ a href="http://#{current_site.username}.neocities.org/#{file.filename}" target="_blank" View
+ a href="#" onclick="confirmFileDelete('#{file.filename}')" Delete
.col.col-40
-
- .row
- .span5
-
- a href="http://#{current_site.username}.neocities.org" target="_blank": img src="/site_screenshots/#{current_site.username}.jpg" alt="screen shot"
-
- h3 class="eps": a href="http://#{current_site.username}.neocities.org" target="_blank" http://#{current_site.username}.neocities.org
- br
-
- .progress.progress-info.progress-striped
- .bar style="width: #{(current_site.total_space / Site::MAX_SPACE.to_f) * 100}%"
-
- h4.base
- You are currently using #{((current_site.total_space.to_f / Site::MAX_SPACE) * 100).round(1)}% (#{current_site.total_space_in_megabytes}MB) of your #{(Site::MAX_SPACE.to_f / 2**20).to_i}MB of free space.
+
+ div.txt-Center style="border:1px solid #ccc; background:#rgba(255,255,255,.7); padding:1em; margin-bottom:20px"
+ a href="http://#{current_site.username}.neocities.org" style="display:block" target="_blank": img src="/site_screenshots/#{current_site.username}.jpg" alt="screen shot"
+ br
+ h3 class="base" style="line-height:1": a href="http://#{current_site.username}.neocities.org" target="_blank" http://#{current_site.username}.neocities.org
+ a href="/site_files/#{current_site.username}.zip" class="btn-Action" Download Entire Site
- .row style="margin-top: 20px"
- .span5
- div
- a href="/site_files/upload" class="btn-Action" style="margin-bottom:20px" Upload New Files
- div
- a href="/site_files/new_page" class="btn-Action" Create New HTML Page
-