fix: account for js being disabled
This commit is contained in:
parent
1690b368fc
commit
ca2c7f177d
4 changed files with 26 additions and 19 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "6.2.7",
|
"version": "6.2.8",
|
||||||
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -18,9 +18,11 @@
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<mastodon-post>
|
<span class="client-side">
|
||||||
<a href="{{ shareLink }}">
|
<mastodon-post>
|
||||||
Discuss on Mastodon
|
<a href="{{ shareLink }}">
|
||||||
</a>
|
Discuss on Mastodon
|
||||||
</mastodon-post>
|
</a>
|
||||||
|
</mastodon-post>
|
||||||
|
</span>
|
||||||
{% endif -%}
|
{% endif -%}
|
|
@ -3,18 +3,20 @@
|
||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
<style>{{ css }}</style>
|
<style>{{ css }}</style>
|
||||||
<script type="module" src="/assets/scripts/share-button.js"></script>
|
<script type="module" src="/assets/scripts/share-button.js"></script>
|
||||||
<share-button>
|
<span class="client-side">
|
||||||
<button class="icon--small icon--center__vertical">{% tablericon "share" "Share" %}</button>
|
<share-button>
|
||||||
<label>
|
<button class="icon--small icon--center__vertical">{% tablericon "share" "Share" %}</button>
|
||||||
Share this page
|
<label>
|
||||||
<input
|
Share this page
|
||||||
type="url"
|
<input
|
||||||
readonly
|
type="url"
|
||||||
value="{{ url }}"
|
readonly
|
||||||
onclick="this.select()"
|
value="{{ url }}"
|
||||||
/>
|
onclick="this.select()"
|
||||||
</label>
|
/>
|
||||||
</share-button>
|
</label>
|
||||||
|
</share-button>
|
||||||
|
</span>
|
||||||
<style>
|
<style>
|
||||||
share-button:not(:defined) button,
|
share-button:not(:defined) button,
|
||||||
share-button:defined label {
|
share-button:defined label {
|
||||||
|
|
|
@ -14,7 +14,10 @@ schema: blog
|
||||||
<h2 class="p-name" data-pagefind-meta="title">{{ title }}</h2>
|
<h2 class="p-name" data-pagefind-meta="title">{{ title }}</h2>
|
||||||
<span class="p-author h-card hidden">{{ meta.author }}</span>
|
<span class="p-author h-card hidden">{{ meta.author }}</span>
|
||||||
<div class="flex--centered">
|
<div class="flex--centered">
|
||||||
<time class="dt-published" datetime="{{ date }}">{{ date | readableDate }} • </time>
|
<time class="dt-published" datetime="{{ date }}">
|
||||||
|
{{ date | readableDate }}
|
||||||
|
<span class="client-side"> • </span>
|
||||||
|
</time>
|
||||||
{% render "partials/share-button.liquid", url:postUrl %}
|
{% render "partials/share-button.liquid", url:postUrl %}
|
||||||
</div>
|
</div>
|
||||||
<div class="p-summary hidden">{{ post_excerpt }}</div>
|
<div class="p-summary hidden">{{ post_excerpt }}</div>
|
||||||
|
|
Reference in a new issue