You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
391 B
Plaintext
14 lines
391 B
Plaintext
2 years ago
|
<div class="section section<%= rand(1..3) %>">
|
||
2 years ago
|
<% if file.end_with?(".md") %>
|
||
|
<%= markdown(File.read(file)) %>
|
||
|
<% elsif file.end_with?(".erb") %>
|
||
|
<%= ERB.new(File.read(file)).result(binding) %>
|
||
|
<% end %>
|
||
2 years ago
|
<span class="seemore">
|
||
2 years ago
|
<span class="seemore">
|
||
2 years ago
|
<b>
|
||
2 years ago
|
<span class="seedate"><%= date %></span>
|
||
2 years ago
|
</b>
|
||
2 years ago
|
<a class="seemorelink" href="/<%= file %>">Article Page</a>
|
||
2 years ago
|
</span>
|
||
|
</div>
|