Skip to content

Commit 517a773

Browse files
committed
Added introductory video to introduction page
1 parent 232361e commit 517a773

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

css/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

introduction/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
33
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
44
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
5-
})(window,document,'script','dataLayer','GTM-PT2SNS');</script><!-- End Google Tag Manager —>--><nav class="navbar closed"><div class="container"><div class="top-mobile"><div class="menu-trigger"><span></span></div><a href="/" class="brand"><img src="/img/pic_logo.svg" class="icon"><img src="/img/logo.svg" class="logo"></a></div><nav class="menu"><a href="/#debugger" class="scrollto">Debugger</a><a href="/#libraries" class="scrollto">Libraries</a><a href="/introduction" class="active">Introduction</a><a href="https://ask.auth0.com/category/jwt" target="_blank">Ask</a><a href="http://swag.auth0.com/" target="_blank">Get a T-shirt!</a></nav><div class="social"><a href="https://auth0.com/" target="_blank" class="a0"><img src="/img/ico_a0_white.svg"></a><a href="https://twitter.com/auth0" target="_blank" class="twitter"><img src="/img/ico_twitter.svg"></a></div><a href="https://auth0.com/" target="_blank" class="supported">Supported by<img src="/img/ico_logo.svg"></a></div></nav><section class="banner-jwt"><div class="container"><a href="/" class="logo"><img src="/img/pic_logo.svg"></a><h1>Introduction to JSON Web Tokens</h1></div></section><section class="plain-text"><div class="container"><h2 id="what-is-json-web-token-">What is JSON Web Token?</h2>
5+
})(window,document,'script','dataLayer','GTM-PT2SNS');</script><!-- End Google Tag Manager —>--><nav class="navbar closed"><div class="container"><div class="top-mobile"><div class="menu-trigger"><span></span></div><a href="/" class="brand"><img src="/img/pic_logo.svg" class="icon"><img src="/img/logo.svg" class="logo"></a></div><nav class="menu"><a href="/#debugger" class="scrollto">Debugger</a><a href="/#libraries" class="scrollto">Libraries</a><a href="/introduction" class="active">Introduction</a><a href="https://ask.auth0.com/category/jwt" target="_blank">Ask</a><a href="http://swag.auth0.com/" target="_blank">Get a T-shirt!</a></nav><div class="social"><a href="https://auth0.com/" target="_blank" class="a0"><img src="/img/ico_a0_white.svg"></a><a href="https://twitter.com/auth0" target="_blank" class="twitter"><img src="/img/ico_twitter.svg"></a></div><a href="https://auth0.com/" target="_blank" class="supported">Supported by<img src="/img/ico_logo.svg"></a></div></nav><section class="banner-jwt"><div class="container"><a href="/" class="logo"><img src="/img/pic_logo.svg"></a><h1>Introduction to JSON Web Tokens</h1></div></section><iframe src="//fast.wistia.net/embed/iframe/dxfz716cw9" allowtransparency="true" frameborder="0" scrolling="no" name="wistia_embed" allowfullscreen mozallowfullscreen webkitallowfullscreen oallowfullscreen msallowfullscreen width="640" height="400" class="intro-video wistia_embed"></iframe><script src="//fast.wistia.net/assets/external/E-v1.js" async></script><section class="plain-text"><div class="container"><h2 id="what-is-json-web-token-">What is JSON Web Token?</h2>
66
<p>JSON Web Token (JWT) is an open standard (<a href="https://tools.ietf.org/html/rfc7519">RFC 7519</a>) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. This information can be verified and trusted because it is digitally signed. JWTs can be signed using a secret (with <strong>HMAC</strong> algorithm) or a public/private key pair using <strong>RSA</strong>.</p>
77
<p>Let&#39;s explain some concepts of this definition further.</p>
88
<ul>

stylus/app.styl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1064,6 +1064,11 @@ body
10641064
border none
10651065
border-radius 0
10661066

1067+
// intro-video
1068+
1069+
.intro-video
1070+
margin 30px auto
1071+
display block
10671072

10681073
// go-tool
10691074

views/introduction.jade

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ block content
6161

6262
h1 Introduction to JSON Web Tokens
6363

64+
iframe.intro-video(src="//fast.wistia.net/embed/iframe/dxfz716cw9" allowtransparency="true" frameborder="0" scrolling="no" class="wistia_embed" name="wistia_embed" allowfullscreen mozallowfullscreen webkitallowfullscreen oallowfullscreen msallowfullscreen width="640" height="400")
65+
script(src="//fast.wistia.net/assets/external/E-v1.js" async)
66+
6467
section.plain-text
6568
.container
6669
include:markdown md/introduction.md

0 commit comments

Comments
 (0)