31 lines
947 B
HTML
31 lines
947 B
HTML
---
|
|
layout: page
|
|
permalink: /classical-ramblings
|
|
title: "Classical Ramblings"
|
|
---
|
|
Below are spewing I think about when listening to Classical Music. They are likely wrong, insultingly innacurate, and offensive to anyone who'd really understand music, but it is what it is.
|
|
Take everything with a grain of salt, and read seeking conflict and superiority.
|
|
-----------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
<div class="posts">
|
|
{% for post in site.categories['Classical Ramblings'] %}
|
|
<article class="post">
|
|
<h1>
|
|
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
|
|
</h1>
|
|
<div>
|
|
<p class="post_date">{{ post.date | date: "%B %e, %Y" }}</p>
|
|
</div>
|
|
<div class="entry">
|
|
{{ post.excerpt }}
|
|
</div>
|
|
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">
|
|
Read More
|
|
</a>
|
|
</article>
|
|
{% endfor %}
|
|
</div>
|
|
|