1
0
Fork 0
mirror of https://github.com/fmap/muflax65ngodyewp.onion synced 2024-06-29 10:36:48 +02:00
muflax65ngodyewp.onion/lib/episteme.rb
muflax 1b781a23f6 transition complete
* word count
* categories in nav-bar
* next / prev item
* robots.txt (including sitemap)
* many minor tweaks
2012-04-18 23:06:03 +02:00

41 lines
603 B
Ruby

# Helper functions for epistemic states.
def techne_title status
case status
when :rough
"needs revisiting"
when :wip
"work in progress"
when :done
"finished"
else
status.to_s
end
end
def episteme_title status
case status
when :broken
"semi-believed"
when :discredited
"not believed"
else
status.to_s
end
end
def episteme_cat status
"<a class='episteme' href='/episteme/'>#{episteme_title status}</a>"
end
class Nanoc::Item
def epistemic?
!!self[:episteme]
end
def mindkiller?
topics = %w{history}
!!self[:mindkiller]
end
end