- Notifications
You must be signed in to change notification settings - Fork 341
/
Copy pathlibraries.pug
60 lines (52 loc) · 2.46 KB
/
libraries.pug
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
extendslayout
blockmeta
title JSON Web Token Libraries - jwt.io
meta(charset='utf-8')
meta(http-equiv='X-UA-Compatible', content='IE=edge')
meta(name='viewport', content='width=device-width, minimum-scale=1.0, maximum-scale=1.0')
meta(name='author', content='auth0.com')
meta(name='description', content='Find an overview of libraries that help you work with JSON Web Tokens in your favorite language.')
meta(name='canonical', content='https://auth0.com/learn/json-web-tokens/')
link(rel="canonical", href="https://jwt.io/libraries")
blocktwittercard
meta(name='twitter:card', content='summary_large_image')
meta(name='twitter:creator', content='@auth0')
meta(name='twitter:title', content='JWT.IO - JSON Web Tokens Libraries')
meta(name='twitter:description', content='Find an overview of libraries that help you work with JSON Web Tokens in your favorite language.')
meta(name='twitter:image', content='http://jwt.io/img/twitter-card.png')
blockopengraph
meta(property='og:type', content='website')
meta(property='og:title', content='JWT.IO - JSON Web Tokens Libraries')
meta(property='og:description', content='Find an overview of libraries that help you work with JSON Web Tokens in your favorite language.')
meta(property='og:locale', content='en_US')
meta(property='og:url', content='http://jwt.io/')
meta(property='og:image', content='http://jwt.io/img/facebook-card.png')
meta(property='og:image:type', content='image/png')
meta(property='og:image:width', content='1200')
meta(property='og:image:height', content='630')
blockcontent
section.banner-jwt
.container
a.logo(href='/')
img(src='/img/pic_logo.svg'alt='JWT logo')
h1 Libraries for Token Signing/Verification
section#libraries-io.libraries-jwt
.container
.title-header
.filter
label(for='libraries-select') Filter by
.jwt-select
select#libraries-select
option(value='*', selected='') All
// Languages must be in alphabetic order
-
constsortedLangs=Array.from(languages);
sortedLangs.sort((a, b) =>a.name.localeCompare(b.name));
each lang in sortedLangs
option(value=`.${lang.uniqueClass}`)#{lang.name}
.libraries-sv(data-accordion-group)
each lang in languages
each lib inlang.libs
includelibraries/template.pug
includecounter.pug
script(src='/js/libraries.js')