adding storelinks to homepage
This commit is contained in:
parent
f67661e4ad
commit
8fdc60f69d
17
index.html
17
index.html
|
@ -29,7 +29,7 @@ logo_image: /siteicon.png
|
|||
|
||||
<p>{{ site.description }}</p>
|
||||
<ul class="actions stacked">
|
||||
<li><a href="#music" class="button large wide smooth-scroll">Gimme Music!</a></li>
|
||||
<li><a href="#music" class="button large wide smooth-scroll-middle">Gimme Music!</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
@ -98,7 +98,7 @@ logo_image: /siteicon.png
|
|||
</section>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
{% include streamer.html %}
|
||||
<!-- Releases -->
|
||||
|
||||
<section id="music" class="wrapper style1 align-center">
|
||||
|
@ -108,29 +108,32 @@ logo_image: /siteicon.png
|
|||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
{% assign sorted = site.albums | sort: 'date' | reverse %}
|
||||
{% for album in sorted %}
|
||||
|
||||
<section class="spotlight style5 orient-{% cycle 'left', 'right' %} content-align-{% cycle 'right', 'left' %} image-position-center onscroll-image-fade-in" {% if forloop.index == 1 %}style="box-shadow: none;" {% endif %}>
|
||||
<section
|
||||
class="spotlight style5 orient-{% cycle 'left', 'right' %} content-align-{% cycle 'right', 'left' %} image-position-center onscroll-image-fade-in"
|
||||
{% if forloop.index == 1 %}style="box-shadow: none;" {% endif %}>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3>{{ album.title }}</h3>
|
||||
<p>{{ album.date | date: "%Y" }}</p>
|
||||
<!-- <p>{{ artist.bio }}</p> -->
|
||||
|
||||
<ul class="actions stacked">
|
||||
<li><a href="{{ album.url }}" style="text-decoration:none;" class="button">Listen</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="image">
|
||||
<img src="{{ site.mediaurl }}/{{ album.slug }}/{{ album.tracks[0].trackSlug }}.jpeg" alt="{{ album.title | smartify }}" />
|
||||
<img src="{{ site.mediaurl }}/{{ album.slug }}/{{ album.tracks[0].trackSlug }}.jpeg"
|
||||
alt="{{ album.title | smartify }}" />
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
<!-- END Insta -->
|
||||
|
||||
<!-- END Release -->
|
||||
{% include streamer.html %}
|
||||
{% include footer.html %}
|
Loading…
Reference in a new issue