Skip to content
Open
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
8 changes: 6 additions & 2 deletions _includes/dev-keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
{% else %}{% comment %}fallback to English{% endcomment %}
{% assign _includes_dev_keys-name = "Name" %}
{% assign _includes_dev_keys-fingerprint = "Fingerprint" %}
{% capture _includes_dev_keys-import %}You can import a key by running the following command with that individual's fingerprint: `gpg{{site.strings.gpg_keyserver}} --recv-keys "<fingerprint>"` Ensure that you put quotes around fingerprints containing spaces.{% endcapture %}
{% capture _includes_dev_keys-import %}You can import a key by running the following command with that individual's fingerprint:

<pre class="highlight code-pad"><code>gpg{{ site.strings.gpg_keyserver }} --recv-keys "&lt;fingerprint&gt;"</code></pre>

Ensure that you put quotes around fingerprints containing spaces.{% endcapture %}
{% endcase %}
{% endcapture %}

Expand All @@ -18,4 +22,4 @@
| Michael Ford | <code>{% include fingerprint-split.html hex="E777299FC265DD04793070EB944D35F9AC3DB76A" %}</code> |
| Ava Chow | <code>{% include fingerprint-split.html hex="152812300785C96444D3334D17565732E08E5E41" %}</code> |

{{_includes_dev_keys-import}}
{{_includes_dev_keys-import}}
2 changes: 1 addition & 1 deletion _includes/fingerprint-split.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{{include.hex | slice: 0, 4 }}&nbsp;{{include.hex | slice: 4, 4 }}&nbsp;{{include.hex | slice: 8, 4 }}&nbsp;{{include.hex | slice: 12, 4 }}&nbsp;{{include.hex | slice: 16, 4 }}&nbsp;&nbsp;{{include.hex | slice: 20, 4 }}&nbsp;{{include.hex | slice: 24, 4 }}&nbsp;{{include.hex | slice: 28, 4 }}&nbsp;{{include.hex | slice: 32, 4 }}&nbsp;{{include.hex | slice: 36, 4 }}
{{include.hex | slice: 0, 4 }} {{include.hex | slice: 4, 4 }} {{include.hex | slice: 8, 4 }} {{include.hex | slice: 12, 4 }} {{include.hex | slice: 16, 4 }} {{include.hex | slice: 20, 4 }} {{include.hex | slice: 24, 4 }} {{include.hex | slice: 28, 4 }} {{include.hex | slice: 32, 4 }} {{include.hex | slice: 36, 4 }}
3 changes: 3 additions & 0 deletions _sass/typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,6 @@ pre {
line-height: 1.5;
overflow-x: auto;
}
.code-pad {
padding: 0 .5rem;
}