Skip to content

Commit 31d65b4

Browse files
committed
Refactor workshops page: replace JavaScript-based collapsible history with reusable Jekyll include
- Removes previous JavaScript and HTML-based toggle for the "Previous Workshops" section. - Introduces a parameterized Jekyll include (`functions/details-list-workshops.md`) to render the workshop history as a native HTML <details> element. - Improves maintainability and consistency with other site sections (e.g., newsletter review club). - Adds clear comments for future maintainers. - No functional JavaScript is required; all logic is handled via Jekyll and HTML. Improve workshop page UX by separating current status from history - Update main workshops page to prominently display current status - Move historical workshop information (2018-2020) to separate page - Improve user perception by highlighting that site is actively maintained - Preserve all historical workshop content in dedicated history page Improve workshop page UX with dedicated layout and toggle functionality - Show current status prominently: no workshops currently scheduled - Hide historical workshop information (2018-2020) in collapsible section - Maintain all existing #taproot-workshop anchor links functionality - Use dedicated layout following Publications pattern for consistency - Remove separate workshop-history.md file (integrated into main page) - Improve user perception that site is actively maintained Improve workshop page UX with dedicated layout and fix localization links - Show current status prominently: no workshops currently scheduled - Hide historical workshop information (2018-2020) in collapsible section - Maintain all existing #taproot-workshop anchor links functionality - Use dedicated layout following Publications pattern for consistency - Fix broken localization links by removing non-existent language pages - Improve user perception that site is actively maintained add workshops.md
1 parent 6177f3a commit 31d65b4

File tree

4 files changed

+189
-71
lines changed

4 files changed

+189
-71
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<!--
2+
This include renders a collapsible <details> section.
3+
Usage: Pass 'title' and 'content' as parameters.
4+
-->
5+
<details>
6+
<summary><h2 style="display:inline">{{ include.title }}</h2></summary>
7+
{{ include.content | markdownify }}
8+
</details>

_includes/workshop-history.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<!--
2+
Static collapsible section for workshop history.
3+
(This file is not used anymore; replaced by the parameterized include.)
4+
-->
5+
<details>
6+
<summary style="font-size:1.1em; cursor:pointer; margin: 20px 0;">📚 Show Workshop History</summary>
7+
<!-- Workshop history content starts -->
8+
<h2>Previous Workshops</h2>
9+
<div id="taproot-workshop"></div>
10+
<h3>Workshops #3, #4 and #5 - Schnorr and Taproot Seminars</h3>
11+
<ul>
12+
<li>San Francisco, September 24 2019</li>
13+
<li>New York, September 27 2019</li>
14+
<li>London, February 5 2020</li>
15+
</ul>
16+
<p><em>Schnorr signatures</em> and <em>Taproot</em> are proposed changes to the Bitcoin
17+
protocol that promise greatly improved privacy, fungibility, scalability and
18+
functionality.</p>
19+
<p>Bitcoin Optech hosted two seminar format workshops which included a mixture of
20+
presentations, coding exercises and discussions, and gave engineers at
21+
member companies an understanding of how these new technologies work and how
22+
they can be applied to their products and services. The workshops also provided
23+
engineers an opportunity to take part in the feedback process while these
24+
technologies are still in the proposal stage.</p>
25+
<p><a href="/en/schorr-taproot-workshop/">All material from the workshops</a> is available on this website, so engineers can
26+
learn about the schnorr/taproot proposals at home.</p>
27+
<h3>Workshop #2 - Paris, November 12-13 2018</h3>
28+
<p>Bitcoin Optech held our second roundtable workshop in Paris on November 12-13 2018.
29+
The format was the same as the first workshop in San Francisco.</p>
30+
<p>In attendance were 24 engineers from Bitcoin companies and open source
31+
projects.</p>
32+
<h4>Topics</h4>
33+
<ul>
34+
<li>Replace-by-fee vs. child-pays-for-parent as fee replacement techniques</li>
35+
<li>Partially Signed Bitcoin Transactions (<a href="https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki">BIP 174</a>)</li>
36+
<li><a href="https://gist.github.com/sipa/e3d23d498c430bb601c5bca83523fa82">Output script descriptors</a> for wallet interoperability</li>
37+
<li>Lightning wallet integration and applications for exchanges</li>
38+
<li>Approaches to coin selection & consolidation</li>
39+
</ul>
40+
<h4>Thanks</h4>
41+
<p>Thanks to Ledger for hosting the workshop and helping with organization.</p>
42+
<h3>Workshop #1 - San Francisco, July 17 2018</h3>
43+
<p>Bitcoin Optech held our first roundtable workshop in San Francisco on July 17 2018:</p>
44+
<ul>
45+
<li>Topics were discussed in a roundtable format in which every participant had an
46+
equal opportunity to engage.</li>
47+
<li>Each topic had a moderator and notetaker. The moderator was responsible for a
48+
brief introduction of a topic and keeping discussion on track and on time.</li>
49+
<li>To make sure that participants were comfortable to speak freely, notes and
50+
action items were distributed to participants but not beyond. Participants
51+
were free to share discussion details internally at their companies and
52+
publicly, but did not attribute any particular statement to a given individual
53+
(Chatham House Rules).</li>
54+
</ul>
55+
<p>In attendance were 14 engineers from SF Bay Area Bitcoin companies and open
56+
source projects.</p>
57+
<h4>Topics</h4>
58+
<ul>
59+
<li>Coin selection</li>
60+
<li>Fee estimation, RBF, CPFP best practices</li>
61+
<li>Optech community and communication</li>
62+
</ul>
63+
<h4>Thanks</h4>
64+
<p>Thanks to Square for hosting the workshop and Coinbase for helping with
65+
organization.</p>
66+
<!-- Workshop history content ends -->
67+
</details>

_layouts/workshops.md

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
---
2+
type: pages
3+
layout: default
4+
---
5+
<link rel="stylesheet" href="/assets/css/main.css">
6+
7+
<div class="localization">
8+
<a href="/en/workshops/">en</a>
9+
</div>
10+
11+
<h1 class="post-title">Workshops</h1>
12+
13+
{% if content != ""%}
14+
<div class="post-content">
15+
{{ content }}
16+
</div>
17+
{%- endif -%}
18+
19+
<!-- Info: Show message if no workshops are currently scheduled -->
20+
<p><strong>Currently, no workshops are scheduled. We are evaluating potential future workshop topics and formats based on community feedback and technical developments in the Bitcoin ecosystem.</strong></p>
21+
22+
<!-- Include: Show previous workshops in a collapsible section -->
23+
{% include functions/details-list-workshops.md
24+
title="Previous Workshops"
25+
content="
26+
<div id='taproot-workshop'></div>
27+
<h3>Workshops #3, #4 and #5 - Schnorr and Taproot Seminars</h3>
28+
<ul>
29+
<li>San Francisco, September 24 2019</li>
30+
<li>New York, September 27 2019</li>
31+
<li>London, February 5 2020</li>
32+
</ul>
33+
<p><em>Schnorr signatures</em> and <em>Taproot</em> are proposed changes to the Bitcoin protocol that promise greatly improved privacy, fungibility, scalability and functionality.</p>
34+
<p>Bitcoin Optech hosted two seminar format workshops which included a mixture of presentations, coding exercises and discussions, and gave engineers at member companies an understanding of how these new technologies work and how they can be applied to their products and services. The workshops also provided engineers an opportunity to take part in the feedback process while these technologies are still in the proposal stage.</p>
35+
<p><a href='/en/schorr-taproot-workshop/'>All material from the workshops</a> is available on this website, so engineers can learn about the schnorr/taproot proposals at home.</p>
36+
<h3>Workshop #2 - Paris, November 12-13 2018</h3>
37+
<p>Bitcoin Optech held our second roundtable workshop in Paris on November 12-13 2018. The format was the same as the first workshop in San Francisco.</p>
38+
<p>In attendance were 24 engineers from Bitcoin companies and open source projects.</p>
39+
<h4>Topics</h4>
40+
<ul>
41+
<li>Replace-by-fee vs. child-pays-for-parent as fee replacement techniques</li>
42+
<li>Partially Signed Bitcoin Transactions (<a href='https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki'>BIP 174</a>)</li>
43+
<li><a href='https://gist.github.com/sipa/e3d23d498c430bb601c5bca83523fa82'>Output script descriptors</a> for wallet interoperability</li>
44+
<li>Lightning wallet integration and applications for exchanges</li>
45+
<li>Approaches to coin selection & consolidation</li>
46+
</ul>
47+
<h4>Thanks</h4>
48+
<p>Thanks to Ledger for hosting the workshop and helping with organization.</p>
49+
<h3>Workshop #1 - San Francisco, July 17 2018</h3>
50+
<p>Bitcoin Optech held our first roundtable workshop in San Francisco on July 17 2018:</p>
51+
<ul>
52+
<li>Topics were discussed in a roundtable format in which every participant had an equal opportunity to engage.</li>
53+
<li>Each topic had a moderator and notetaker. The moderator was responsible for a brief introduction of a topic and keeping discussion on track and on time.</li>
54+
<li>To make sure that participants were comfortable to speak freely, notes and action items were distributed to participants but not beyond. Participants were free to share discussion details internally at their companies and publicly, but did not attribute any particular statement to a given individual (Chatham House Rules).</li>
55+
</ul>
56+
<p>In attendance were 14 engineers from SF Bay Area Bitcoin companies and open source projects.</p>
57+
<h4>Topics</h4>
58+
<ul>
59+
<li>Coin selection</li>
60+
<li>Fee estimation, RBF, CPFP best practices</li>
61+
<li>Optech community and communication</li>
62+
</ul>
63+
<h4>Thanks</h4>
64+
<p>Thanks to Square for hosting the workshop and Coinbase for helping with organization.</p>
65+
"
66+
%}

en/workshops.md

Lines changed: 48 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -13,76 +13,53 @@ and the specific scaling challenges that they are facing.
1313
If you have any requests or suggestions for future workshop events, please
1414
[contact us][optech email].
1515

16-
## Workshops #3, #4 and #5 - Schnorr and Taproot Seminars {#taproot-workshop}
17-
18-
- San Francisco, September 24 2019
19-
- New York, September 27 2019
20-
- London, February 5 2020
21-
22-
*Schnorr signatures* and *Taproot* are proposed changes to the Bitcoin
23-
protocol that promise greatly improved privacy, fungibility, scalability and
24-
functionality.
25-
26-
Bitcoin Optech hosted two seminar format workshops which included a mixture of
27-
presentations, coding exercises and discussions, and gave engineers at
28-
member companies an understanding of how these new technologies work and how
29-
they can be applied to their products and services. The workshops also provided
30-
engineers an opportunity to take part in the feedback process while these
31-
technologies are still in the proposal stage.
32-
33-
[All material from the workshops][taproot workshop blog post] is available on this website, so engineers can
34-
learn about the schnorr/taproot proposals at home.
35-
36-
## Workshop #2 - Paris, November 12-13 2018
37-
38-
Bitcoin Optech held our second roundtable workshop in Paris on November 12-13 2018.
39-
The format was the same as the first workshop in San Francisco.
40-
41-
In attendance were 24 engineers from Bitcoin companies and open source
42-
projects.
43-
44-
#### Topics
45-
46-
- Replace-by-fee vs. child-pays-for-parent as fee replacement techniques
47-
- Partially Signed Bitcoin Transactions ([BIP 174](https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki))
48-
- [Output script descriptors](https://gist.github.com/sipa/e3d23d498c430bb601c5bca83523fa82) for wallet interoperability
49-
- Lightning wallet integration and applications for exchanges
50-
- Approaches to coin selection & consolidation
51-
52-
#### Thanks
53-
54-
Thanks to Ledger for hosting the workshop and helping with organization.
55-
56-
## Workshop #1 - San Francisco, July 17 2018
57-
58-
Bitcoin Optech held our first roundtable workshop in San Francisco on July 17 2018:
59-
60-
- Topics were discussed in a roundtable format in which every participant had an
61-
equal opportunity to engage.
62-
63-
- Each topic had a moderator and notetaker. The moderator was responsible for a
64-
brief introduction of a topic and keeping discussion on track and on time.
65-
66-
- To make sure that participants were comfortable to speak freely, notes and
67-
action items were distributed to participants but not beyond. Participants
68-
were free to share discussion details internally at their companies and
69-
publicly, but did not attribute any particular statement to a given individual
70-
(Chatham House Rules).
71-
72-
In attendance were 14 engineers from SF Bay Area Bitcoin companies and open
73-
source projects.
74-
75-
#### Topics
76-
77-
- Coin selection
78-
- Fee estimation, RBF, CPFP best practices
79-
- Optech community and communication
80-
81-
#### Thanks
82-
83-
Thanks to Square for hosting the workshop and Coinbase for helping with
84-
organization.
16+
## Current Status
17+
18+
**Currently, no workshops are scheduled.** We are evaluating potential future workshop topics and formats based on community feedback and technical developments in the Bitcoin ecosystem.
19+
20+
{% include functions/details-list-workshops.md
21+
title="Previous Workshops"
22+
content="
23+
<div id='taproot-workshop'></div>
24+
<h3>Workshops #3, #4 and #5 - Schnorr and Taproot Seminars</h3>
25+
<ul>
26+
<li>San Francisco, September 24 2019</li>
27+
<li>New York, September 27 2019</li>
28+
<li>London, February 5 2020</li>
29+
</ul>
30+
<p><em>Schnorr signatures</em> and <em>Taproot</em> are proposed changes to the Bitcoin protocol that promise greatly improved privacy, fungibility, scalability and functionality.</p>
31+
<p>Bitcoin Optech hosted two seminar format workshops which included a mixture of presentations, coding exercises and discussions, and gave engineers at member companies an understanding of how these new technologies work and how they can be applied to their products and services. The workshops also provided engineers an opportunity to take part in the feedback process while these technologies are still in the proposal stage.</p>
32+
<p><a href='/en/schorr-taproot-workshop/'>All material from the workshops</a> is available on this website, so engineers can learn about the schnorr/taproot proposals at home.</p>
33+
<h3>Workshop #2 - Paris, November 12-13 2018</h3>
34+
<p>Bitcoin Optech held our second roundtable workshop in Paris on November 12-13 2018. The format was the same as the first workshop in San Francisco.</p>
35+
<p>In attendance were 24 engineers from Bitcoin companies and open source projects.</p>
36+
<h4>Topics</h4>
37+
<ul>
38+
<li>Replace-by-fee vs. child-pays-for-parent as fee replacement techniques</li>
39+
<li>Partially Signed Bitcoin Transactions (<a href='https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki'>BIP 174</a>)</li>
40+
<li><a href='https://gist.github.com/sipa/e3d23d498c430bb601c5bca83523fa82'>Output script descriptors</a> for wallet interoperability</li>
41+
<li>Lightning wallet integration and applications for exchanges</li>
42+
<li>Approaches to coin selection & consolidation</li>
43+
</ul>
44+
<h4>Thanks</h4>
45+
<p>Thanks to Ledger for hosting the workshop and helping with organization.</p>
46+
<h3>Workshop #1 - San Francisco, July 17 2018</h3>
47+
<p>Bitcoin Optech held our first roundtable workshop in San Francisco on July 17 2018:</p>
48+
<ul>
49+
<li>Topics were discussed in a roundtable format in which every participant had an equal opportunity to engage.</li>
50+
<li>Each topic had a moderator and notetaker. The moderator was responsible for a brief introduction of a topic and keeping discussion on track and on time.</li>
51+
<li>To make sure that participants were comfortable to speak freely, notes and action items were distributed to participants but not beyond. Participants were free to share discussion details internally at their companies and publicly, but did not attribute any particular statement to a given individual (Chatham House Rules).</li>
52+
</ul>
53+
<p>In attendance were 14 engineers from SF Bay Area Bitcoin companies and open source projects.</p>
54+
<h4>Topics</h4>
55+
<ul>
56+
<li>Coin selection</li>
57+
<li>Fee estimation, RBF, CPFP best practices</li>
58+
<li>Optech community and communication</li>
59+
</ul>
60+
<h4>Thanks</h4>
61+
<p>Thanks to Square for hosting the workshop and Coinbase for helping with organization.</p>
62+
"
63+
%}
8564

8665
{% include references.md %}
87-
88-
[taproot workshop blog post]: /en/schorr-taproot-workshop/

0 commit comments

Comments
 (0)