mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 01:32:36 +02:00
fix up layout issues with browse page and add alt text to images so as to take care of the 300+ html errors updated about.erb to take care of html error updated About NeoCities footer to say About Us to take care of text overlap issue with sticker. clean up one error on sign in page. update length of inputs to a 60% col. dashboard add alt tag to screen shot. fix some issues with incorrect indenting in the slim file settings: update some font sizes for layout purposes
99 lines
4.7 KiB
Text
99 lines
4.7 KiB
Text
javascript:
|
|
function confirmFileDelete(name) {
|
|
$('#deleteFileName').html(name);
|
|
$('#deleteConfirmModal').modal();
|
|
}
|
|
|
|
function fileDelete() {
|
|
$('#deleteFilenameInput').val($('#deleteFileName').html());
|
|
$('#deleteFilenameForm').submit();
|
|
}
|
|
|
|
.content-Base
|
|
.row.content
|
|
.col.col-60
|
|
|
|
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
|
|
<i class="icon-file-alt icon-3x"></i> <span style="font-size: 20pt">#{file.filename}</span>
|
|
- if file.filename == 'index.html'
|
|
p.tiny
|
|
This is your index file! It is the "default file" that loads when you go to <a href="http://#{current_site.username}.neocities.org">#{current_site.username}.neocities.org</a>. 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 <b>index.html</b>.
|
|
|
|
div style="margin-bottom:30px"
|
|
span
|
|
i class="icon-globe"
|
|
|
|
a href="http://#{current_site.username}.neocities.org/#{file.filename}" target="_blank" View <br />
|
|
span
|
|
i class="icon-edit"
|
|
a href="/site_files/text_editor/#{file.filename}" Edit with text editor <br />
|
|
span
|
|
i class="icon-edit"
|
|
span Edit with visual editor <small style="margin:0; display:inline">(coming soon)</small><br/>
|
|
span
|
|
i class="icon-edit"
|
|
span: a href="/site_files/download/#{file.filename}" Download <br />
|
|
span
|
|
i class="icon-trash"
|
|
a href="#" onclick="confirmFileDelete('#{file.filename}')" Delete
|
|
- else
|
|
<i class="icon-picture icon-3x"></i> <span style="font-size: 20pt">#{file.filename}</span>
|
|
div style="margin-top: 3px; margin-bottom:10px"
|
|
| To use in an HTML file, paste this text: <code class="tiny" style="margin:0"><img src="/#{file.filename}"></code>
|
|
a href="http://#{current_site.username}.neocities.org/#{file.filename}" target="_blank" View <br />
|
|
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.
|
|
|
|
.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
|
|
<hr />
|
|
|
|
div
|
|
a href="/site_files/#{current_site.username}.zip" class="btn-Action" Download Entire Site
|
|
|
|
.row style="margin-top: 20px"
|
|
.span5
|
|
<i class="icon-question-sign icon-3x"></i> <span style="font-size: 20pt">Need to learn web design?</span>
|
|
div
|
|
div
|
|
i class="icon-globe"
|
|
a href="/tutorials" target="_blank" Web Design, HTML, CSS, JavaScript Tutorials
|
|
|
|
form method="POST" action="/site_files/delete" id="deleteFilenameForm"
|
|
input name="csrf_token" type="hidden" value="#{csrf_token}"
|
|
input type="hidden" id="deleteFilenameInput" name="filename"
|
|
|
|
.modal.hide.fade id="deleteConfirmModal" tabindex="-1" role="dialog" aria-labelledby="deleteConfirmModalLabel" aria-hidden="true"
|
|
.modal-header
|
|
button.close type="button" data-dismiss="modal" aria-hidden="true" x
|
|
h3 id="deleteConfirmModalLabel" Confirm delete of file
|
|
.modal-body
|
|
p You are about to delete the file <span id="deleteFileName"></span>. Are you sure?
|
|
.modal-footer
|
|
button.btn data-dismiss="modal" aria-hidden="true" Cancel
|
|
button.btn.btn-danger onclick="fileDelete()" Delete
|