Skip to content

Commit e581931

Browse files
authored
Merge pull request jsonwebtoken#241 from mike-casas/238
minor fix-pr-jsonwebtoken#238
2 parents 641ea45 + 6333257 commit e581931

File tree

4 files changed

+107
-3
lines changed

4 files changed

+107
-3
lines changed

img/22.svg

Lines changed: 17 additions & 0 deletions
Loading

stylus/app.styl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,9 @@ body
753753
&.jwt-crystal
754754
.panel-heading h3
755755
background-color #B0B0B0
756+
&.jwt-1c
757+
.panel-heading h3
758+
background-color #fbc53d
756759

757760

758761
.panel-heading

views/index.jade

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ block content
5959
span.button-text Add to chrome
6060
section.jtw-ebook-banner
6161
span
62-
strong Get the JWT Handbook for free!
62+
strong Get the JWT Handbook for free!
6363
|Spread the word and download it now.
6464
a.btn.btn-download-ebook(href='https://auth0.com/e-books/jwt-handbook?utm_source=jwtio&utm_medium=sc&utm_campaign=rotating_banner', target='_blank') Download Ebook
65-
65+
6666
script.
6767
var extensionSection = document.getElementsByClassName("update-site")[0];
6868
var ebookSection = document.getElementsByClassName("jtw-ebook-banner")[0];
@@ -157,6 +157,7 @@ block content
157157
select
158158
// Languages must be in alphabetic order
159159
option(value='*', selected='') All
160+
option(value='.1c') 1c
160161
option(value='.c') C
161162
option(value='.clojure') Clojure
162163
option(value='.crystal') Crystal
@@ -236,6 +237,7 @@ block content
236237
include libraries/php5.jade
237238
include libraries/php6.jade
238239
include libraries/crystal.jade
240+
include libraries/1c.jade
239241

240242
section.sources
241243
.container
@@ -275,4 +277,4 @@ block content
275277
.column.tshirt
276278
h2 Store
277279
img(src='img/pic_tshirt.png')
278-
a.buy(href='http://swag.auth0.com/', target='_blank') Buy T-Shirt
280+
a.buy(href='http://swag.auth0.com/', target='_blank') Buy T-Shirt

views/libraries/1c.jade

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
// 1C pintov/1c-jwt
2+
article.jwt-1c.1c.accordion(data-accordion)
3+
.panel-heading(data-control)
4+
img(src='/img/22.svg')
5+
h3 1C
6+
.panel-wrap(data-content)
7+
.panel-body
8+
.column
9+
p
10+
i.icon-budicon-500
11+
| Sign
12+
p
13+
i.icon-budicon-500
14+
| Verify
15+
p
16+
i.icon-budicon-501
17+
code iss
18+
| check
19+
p
20+
i.icon-budicon-501
21+
code sub
22+
| check
23+
p
24+
i.icon-budicon-501
25+
code aud
26+
| check
27+
p
28+
i.icon-budicon-501
29+
code exp
30+
| check
31+
p
32+
i.icon-budicon-501
33+
code nbf
34+
| check
35+
p
36+
i.icon-budicon-501
37+
code iat
38+
| check
39+
p
40+
i.icon-budicon-501
41+
code jti
42+
| check
43+
.column
44+
p
45+
i.icon-budicon-500
46+
| HS256
47+
p
48+
i.icon-budicon-501
49+
| HS384
50+
p
51+
i.icon-budicon-501
52+
| HS512
53+
p
54+
i.icon-budicon-501
55+
| RS256
56+
p
57+
i.icon-budicon-501
58+
| RS384
59+
p
60+
i.icon-budicon-501
61+
| RS512
62+
p
63+
i.icon-budicon-501
64+
| ES256
65+
p
66+
i.icon-budicon-501
67+
| ES384
68+
p
69+
i.icon-budicon-501
70+
| ES512
71+
72+
.author-info
73+
.maintainer
74+
a(href='https://github.com/pintov')
75+
i.icon-budicon-333(data-toggle='tooltip', title='', data-original-title='Maintainer')
76+
| Vasily Pintov
77+
.repository
78+
i.icon-1392070209-icon-social-github
79+
a(href='https://github.com/pintov/1c-jwt') View Repo
80+
81+
.panel-footer
82+
code git clone https://github.com/pintov/1c-jwt

0 commit comments

Comments
 (0)