1
0
Fork 0
mirror of https://github.com/fmap/muflax65ngodyewp.onion synced 2024-06-29 10:36:48 +02:00

make mindkiller separate attribute

This commit is contained in:
muflax 2012-01-21 01:50:04 +01:00
parent 7c715f1ef0
commit 7df6e6f698
2 changed files with 10 additions and 6 deletions

View file

@ -33,8 +33,8 @@
<% end %> <% end %>
<!-- epistemic and technical state --> <!-- epistemic and technical state -->
<div id="episteme"> <% if @item[:episteme] %>
<% if @item[:episteme] %> <div id="episteme">
<p><span class="align_left"> <p><span class="align_left">
Last modified: Last modified:
<a class='episteme' href='/changelog/'> <a class='episteme' href='/changelog/'>
@ -47,9 +47,15 @@
<%= episteme @item[:episteme] %></a>. <%= episteme @item[:episteme] %></a>.
</span> </span>
</p> </p>
<% end %> </div>
</div> <% end %>
<% if @item[:mindkiller] %>
<div id="mindkiller">
<p>Warning: this page contains mind-killing content. Proceed with caution. The author does not endorse any of the views expressed here, even when they may look convincing. If you feel offended, consider that the author might be trolling you and whether you want to encourage them even further.</p>
</div>
<% end %>
<!-- actual content (not indented to protect markdown) --> <!-- actual content (not indented to protect markdown) -->
<div id="content"> <div id="content">

View file

@ -19,8 +19,6 @@ def episteme status
"semi-believed" "semi-believed"
when :discredited when :discredited
"not believed" "not believed"
when :mindkiller
"mind-killing"
else else
status.to_s status.to_s
end end