forked from keycloak/keycloak-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate server guides into website guides
Closes keycloak#249
- Loading branch information
Showing
27 changed files
with
523 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
guides/getting-started/getting-started-operator-kubernetes.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
guides/getting-started/getting-started-operator-openshift.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
:title: Apache APISIX | ||
:summary: Integrate Keycloak for Authentication with Apache APISIX | ||
:guide-title: Apache APISIX | ||
:guide-summary: Integrate Keycloak for Authentication with Apache APISIX | ||
:external-link: https://apisix.apache.org/blog/2021/12/10/integrate-keycloak-auth-in-apisix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
:title: KrakenD | ||
:summary: Secure APIs with an API Gateway | ||
:guide-title: KrakenD | ||
:guide-summary: Secure APIs with an API Gateway | ||
:external-link: https://www.krakend.io/docs/authorization/keycloak/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"dependencies": { | ||
"bootstrap": "5.1.x", | ||
"@fortawesome/fontawesome-free": "5.15.4" | ||
"@fortawesome/fontawesome-free": "5.15.4", | ||
"tocbot": "4.18.0" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<#import "/templates/template.ftl" as tmpl> | ||
|
||
<@tmpl.page current="guides" title="Guides"> | ||
|
||
<script src="${links.getResource('js/guides.js')}" type="text/javascript"></script> | ||
|
||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark"> | ||
<div class="container"> | ||
<ul class="nav navbar-nav"> | ||
<#list guides.categories as c> | ||
<li> | ||
<a class="nav-link" href="#${c.id}">${c.label}</a> | ||
</li> | ||
</#list> | ||
</ul> | ||
<div class="float-right"> | ||
<form> | ||
<input id="guide-search" class="form-control" type="text" placeholder="Search" aria-label="Search"> | ||
</form> | ||
</div> | ||
</div> | ||
</nav> | ||
|
||
<div class="jumbotron jumbotron-fluid kc-bg-triangles pt-4"> | ||
<div class="container"> | ||
<#list guides.categories as c> | ||
<div class="row guide-category" id="${c.id}"> | ||
<h2>${c.label}</h2> | ||
<#list guides.getGuides(c) as g> | ||
<div class="col-sm-4"> | ||
<div class="card shadow-sm mb-4"> | ||
<div class="card-body"> | ||
<h5 class="card-title"> | ||
${g.title} | ||
<#if g.community><span class="float-end badge bg-primary fs-xsmall"><i class="fa fa-users"></i> community</span></#if> | ||
<#if g.external><span class="float-end badge bg-primary fs-xsmall"><i class="fa fa-link"></i> external</span></#if> | ||
</h5> | ||
<#if g.summary??> | ||
<span class="card-text">${g.summary}</span> | ||
</#if> | ||
<div> | ||
<#if g.tags??> | ||
<#list g.tags as tag> | ||
<span class="badge bg-light text-muted fs-xsmall mt-3">${tag}</span> | ||
</#list> | ||
</#if> | ||
</div> | ||
<a href="${links.get(g)}" <#if g.external>target="_blank"</#if> class="stretched-link link-dark"></a> | ||
</div> | ||
</div> | ||
</div> | ||
</#list> | ||
</div> | ||
</#list> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</@tmpl.page> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.