Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion _data/sponsors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,27 @@ sponsors:
"John and the Optech team have really taken the initiative to help build a higher level of communication and collaboration between industry and the open source development community. We're just at the beginning of realizing the potential of Bitcoin and related technology, and I'm excited to see how much we can all accomplish working together."

members:
-
name: BitGo
twitter: BitGo
logo: bitgo.png
-
name: Coinbase
twitter: Coinbase
logo: coinbase.png
-
name: Ledger
twitter: LedgerHQ
avatar: https://pbs.twimg.com/profile_images/915545754084741120/N44_mYZ7_400x400.jpg
logo: ledger.png
-
name: Purse
twitter: PurseIO
logo: purse.png
-
name: Square
twitter: Square
logo: square2.jpeg
-
name: Xapo
twitter: xapo
logo: xapo.png
20 changes: 20 additions & 0 deletions _includes/members.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{% assign members = site.data.sponsors.members %}

<div id="members">

<h2>Member Companies</h2>

<p>Bitcoin Optech is supported by our member companies.</p>

<ul class="members n-column-list">
{% for member in members %}
{% assign logo=member.logo %}
{% unless member.logo contains 'https://' %}{% capture logo %}/img/members/{{member.logo}}{% endcapture %}{% endunless %}
<li>
<div style="max-height:150px;min-height:150px;display:flex;align-items:center">
<a href="https://twitter.com/{{ member.twitter }}"><img src="{{ logo }}" width="150" alt="{{ member.name }}" title="{{ member.name }}"></a>
</div>
</li>
{% endfor %}
</ul>
</div>
2 changes: 1 addition & 1 deletion _includes/sponsors.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div id="sponsors">

<h2>Founding Sponsors</h2>
<h2 style="width:max-content">Founding Sponsors</h2>

<p>Our founding sponsors have generously provided funds and resources to cover our start-up and ongoing costs.</p>

Expand Down
Binary file added img/members/.DS_Store
Binary file not shown.
Binary file added img/members/bitgo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/members/coinbase.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/members/ledger.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/members/purse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/members/square.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/members/square2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/members/xapo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,6 @@ contact us at [[email protected]](mailto:[email protected]).

{% include newsletter-signup.html %}

{% include members.html %}

{% include sponsors.html %}