Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
public/
resources/
.hugo_build.lock

# Local Netlify folder
.netlify
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Kosli, Inc
Copyright (c) 2025 Kosli, Inc

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Introduction
bookToC: true
---

{{< figure src="/images/hero-home.svg" alt="Secure SDLC Process Template">}}
{{< figure src="images/hero-home.svg" alt="Secure SDLC Process Template">}}
# The Secure SDLC Process Template


Expand Down
4 changes: 2 additions & 2 deletions layouts/partials/docs/inject/footer.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<hr>
<div class="footer-title">
The Secure SDLC Process Template is maintained by <a href="https://www.kosli.com/"><img class="footer-logo" src="/secure-sdlc-process-template/images/kosli-logo.svg" alt="kosli-logo"></a>
The Secure SDLC Process Template is maintained by <a href="https://www.kosli.com/"><img class="footer-logo" src="{{ "images/kosli-logo.svg" | relURL }}" alt="kosli-logo"></a>
</div>
<div class="flex justify-between">
<ul class="hlist">
Expand All @@ -16,7 +16,7 @@
</li>
</ul>
<div class="text-right">
© Kosli 2023, all rights reserved<br>
© Kosli 2025, all rights reserved<br>
CCPA Do not sell my info
</div>
</div>
10 changes: 10 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[build]
command = "hugo"
publish = "public"
environment = { HUGO_VERSION = "0.139.3" }

[context.production]
command = "hugo --baseURL https://kosli.com/secure-sdlc-process-template/"

[context.deploy-preview]
command = "hugo --baseURL $DEPLOY_PRIME_URL"
30 changes: 22 additions & 8 deletions static/images/hero-home.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
67 changes: 28 additions & 39 deletions static/images/kosli-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion themes/hugo-book/assets/_custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// @import "plugins/numbered";

.main-header {
background-color: var(--header-color);
background-color: #101C2B;
color: white;

a {
Expand Down
2 changes: 1 addition & 1 deletion themes/hugo-book/layouts/partials/docs/html-head.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
{{- end -}}

<!-- Theme stylesheet, you can customize scss by creating `assets/custom.scss` in your website -->
{{- $styles := resources.Get "book.scss" | resources.ExecuteAsTemplate "book.scss" . | resources.ToCSS | resources.Minify | resources.Fingerprint }}
{{- $styles := resources.Get "book.scss" | resources.ExecuteAsTemplate "book.scss" . | css.Sass | resources.Minify | resources.Fingerprint }}
<link rel="stylesheet" href="{{ $styles.RelPermalink }}" {{ template "integrity" $styles }}>

{{- if default true .Site.Params.BookSearch -}}
Expand Down
2 changes: 1 addition & 1 deletion themes/hugo-book/layouts/partials/docs/menu.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<nav>
{{ partial "docs/search" . }}
{{ if .Site.IsMultiLingual }}
{{ if hugo.IsMultilingual }}
{{ partial "docs/languages" . }}
{{ end }}

Expand Down