diff options
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/default.html | 3 | ||||
| -rw-r--r-- | _layouts/post.html | 11 |
2 files changed, 4 insertions, 10 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 10b04b3..0adbf0d 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -28,6 +28,9 @@ {% comment %}<!-- We have the same CSS file for all languages -->{% endcomment %} <link href="{{ "/stylesheets/main.css" | prepend: site.baseurl_root }}" rel="stylesheet" type="text/css" /> + {% comment %}<!-- We have the same JS file for all languages -->{% endcomment %} + <script src="{{ "/javascripts/dist/main.min.js" | prepend: site.baseurl_root }}"></script> + {% comment %}<!-- Empty favicon -->{% endcomment %} <link href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAYAAABPYyMiAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAF0lEQVRIx2NgGAWjYBSMglEwCkbBSAcACBAAAeaR9cIAAAAASUVORK5CYII=" rel="icon" type="image/x-icon" /> diff --git a/_layouts/post.html b/_layouts/post.html index f8174f5..4b0b9dd 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -6,16 +6,7 @@ layout: default {{ page.title }}{% if page.subtitle %}.<small class="post-subtitle"> {{ page.subtitle }}</small>{% endif %} </h1> -<p class="post-meta"> - {% t blog.posted_on %} - {% if site.lang == "ca" %} - {% include date.html date=page.date %} - {{ pre }}{{ day }} de {{ month }} del {{ year }} - {% else %} - {{ post.date | date: "%B %-d, %Y" }} - {% endif %} - {% t footer.by %} {{ site.author }} -</p> +{% include postmeta.html urltobeused="/" date=page.date tags=page.tags %} {{ content }} |
