1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-22 09:46:57 +01:00

Merge pull request #176 from ascribe/feature/javadriver

add Java driver
This commit is contained in:
Matthias Kretschmann 2017-09-13 12:39:30 +02:00 committed by GitHub
commit bac5687341
2 changed files with 14 additions and 1 deletions

View File

@ -9,6 +9,12 @@ official:
version: v0.3
icon: logo-js
- title: Java
repo: java-bigchaindb-driver
external: authenteq
version: v0.1
icon: logo-java
- title: CLI
repo: bdb-transaction-cli
version: v0.9

View File

@ -208,8 +208,15 @@ conn.postTransaction(txSigned)
<div class="grid grid--full grid-small--half grid--gutters">
{% for driver in site.data.drivers.official %}
{% if driver.external %}
{% capture url %}https://github.com/{{ driver.external }}/{{ driver.repo }}{% endcapture %}
{% else %}
{% capture url %}https://github.com/bigchaindb/{{ driver.repo }}{% endcapture %}
{% endif %}
<div class="grid__col">
<a class="driver" href="https://github.com/bigchaindb/{{ driver.repo }}">
<a class="driver" href="{{ url }}">
<h2 class="driver__title">{{ driver.title }}</h2>
<svg class="driver__logo">
<use xlink:href="/assets/img/sprite.svg#{{ driver.icon }}"></use>