Lemonade is the 2nd collaborative effort from Ukrainian composer Heinali and American poet Matt Finney (of Finneyerkes).
.
Their first EP Town Line was met with very positive reviews and they’ve teamed up once again to create another project that shows them moving into darker territory despite the album’s title.
It’s available for free download and you can also purchase the album with bonus material by naming your own price. All music composed and performed by Heinali. All lyrics and spoken word peformance by Matt Finney
Related
document.addEventListener('DOMContentLoaded', function() {
// Get all pagination links
const paginationLinks = document.querySelectorAll('.pagination a');
paginationLinks.forEach(link => {
link.addEventListener('click', function(e) {
// Prevent default action
e.preventDefault();
// Fetch the href of the clicked link
let url = this.getAttribute('href');
// Adjust the URL for front-page pagination if needed
if (window.location.pathname === '/' || window.location.pathname === '/index.php') {
if (!url.includes('paged')) {
url += (url.includes('?') ? '&' : '?') + 'paged=1';
}
}
// Redirect to the adjusted pagination URL
window.location.href = url;
});
});
});