fix: account for js being disabled

This commit is contained in:
Cory Dransfeldt 2024-02-19 12:34:34 -08:00
parent 1690b368fc
commit ca2c7f177d
No known key found for this signature in database
4 changed files with 26 additions and 19 deletions

View file

@ -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": {

View file

@ -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 -%}

View file

@ -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 {

View file

@ -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>