Skip to content

Commit

Permalink
Fixing broken links (#24)
Browse files Browse the repository at this point in the history
* correcting broken links
* correcting minor css nits
  • Loading branch information
yaleman authored Apr 28, 2024
1 parent 5398348 commit 88cd3bd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
4 changes: 2 additions & 2 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ If you want to read more about what Kanidm can do, you should [read our document
A quick [getting start guide](https://kanidm.github.io/kanidm/stable/quickstart.html) is available.

We also have a set of
[support guidelines](https://github.com/kanidm/kanidm/blob/master/project_docs/RELEASE_AND_SUPPORT.md)
[support guidelines](https://kanidm.github.io/kanidm/master/support.html)
for what the project team will support.

## Code of Conduct / Ethics

All interactions with the project are covered by our [code of conduct](/code-of-conduct/).

When we develop features we follow our projects guidelines on [rights and ethics](https://github.com/kanidm/kanidm/blob/master/project_docs/ethics/README.md).
When we develop features we follow our projects guidelines on [rights and ethics](https://kanidm.github.io/kanidm/master/developers/developer_ethics.html).

## Getting in Contact

Expand Down
3 changes: 2 additions & 1 deletion themes/juice/sass/juice.scss
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@ main {
border-radius: 3px;
border-top: 5px solid var(--primary-color);
background-color: var(--toc-background-color);
position: sticky;
position: -webkit-sticky;
position: -moz-sticky;
position: -ms-sticky;
position: -o-sticky;
position: sticky;
top: 10px;
padding: 10px 0 20px;
max-height: 100vh;
Expand Down Expand Up @@ -168,6 +168,7 @@ footer {


.hero-image {
width: 50%;
margin: 1.0em;
}

Expand Down
15 changes: 6 additions & 9 deletions themes/juice/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@

<div class="hero">
{% block hero %}
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script async defer
src="https://buttons.github.io/buttons.js"></script>
<section class="text-center">
<!-- <h1 class="heading-text">
Kanidm
Expand All @@ -54,13 +55,8 @@ <h3 class="title-text">
aria-label="Fork kanidm/kanidm on GitHub">Fork</a>
</div>
</section>
<img class="hero-image" alt="Kanidm Logo" style="width: 50%"
<img class="hero-image" alt="Kanidm Logo"
src="{{ get_url(path="images/logo.svg") }}">

<!-- <div class="explore-more text"
onclick="document.getElementById('features').scrollIntoView({behavior: 'smooth'})">
Explore More ⇩
</div> -->
<style>


Expand Down Expand Up @@ -88,7 +84,8 @@ <h3 class="title-text">
{% if h.children %}
{% for h2 in h.children %}
<div class="toc-item-child">
<a class="subtext" href="{{h2.permalink | safe}}"><small>-
<a class="subtext"
href="{{h2.permalink | safe}}"><small>-
{{ h2.title }}</small></a>
</div>
{% endfor %}
Expand All @@ -101,7 +98,7 @@ <h3 class="title-text">

<div class="content text">
{% block content %}
<div id="features" class="heading-text">Welcome!</div>
<div id="heading" class="heading-text">Welcome!</div>
{{ section.content | safe }}
{% endblock content %}
</div>
Expand Down

0 comments on commit 88cd3bd

Please sign in to comment.