Add list of articles by same author(s) to each article page It is in the form of a carousel

This commit is contained in:
Matthew Grove
2019-03-05 21:54:26 +00:00
parent 3b67b7a5d7
commit c3ac6f5335
30 changed files with 992 additions and 84 deletions

View File

@@ -18,6 +18,7 @@
</div>
</main>
{% include footer.html %}
{% include top-scroll-button.html %}
</div>
</body>
<style>

View File

@@ -2,7 +2,6 @@
<html>
{% include head.html %}
<link href="/css/mdc-card-list.css" rel="stylesheet">
<script src="/js/top-scroll-button.js"></script>
<body>
<!-- cookie notice is included automatically -->
{% include cookie-notice.html %}

View File

@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<link href="/css/article-page.css" rel="stylesheet">
{% include article-page-head.html %}
<body>
<!-- cookie notice is included automatically -->
{% include cookie-notice.html %}
@@ -24,9 +24,12 @@
<figcaption class="mdc-typography--caption-text">{{ page.image-caption }}</figcaption>
</figure>
{{ content }}
{% include article-carousel.html %}
</div>
</main>
{% include footer.html %}
{% include top-scroll-button.html %}
</div>
</body>
</html>

View File

@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<link href="/css/article-page.css" rel="stylesheet">
{% include article-page-head.html %}
<body>
<!-- cookie notice is included automatically -->
{% include cookie-notice.html %}
@@ -24,9 +24,12 @@
<figcaption class="mdc-typography--caption-text">{{ page.video-caption }}</figcaption>
</figure>
{{ content }}
{% include article-carousel.html %}
</div>
</main>
{% include footer.html %}
{% include top-scroll-button.html %}
</div>
</body>
</html>