Skip to content

Commit b06f503

Browse files
committed
DotKernel -> Dotkernel
Signed-off-by: alexmerlin <alex.merlin.1985@gmail.com>
1 parent cd46d33 commit b06f503

5 files changed

Lines changed: 16 additions & 16 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 DotKernel
3+
Copyright (c) 2024 Dotkernel
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

github-actions/docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# DotKernel GitHub Actions: docs
1+
# Dotkernel GitHub Actions: docs
22

3-
This action can be used to build and deploy documentation for a DotKernel repository.
3+
This action can be used to build and deploy documentation for a Dotkernel repository.
44

55
The action makes several assumptions:
66

theme/main.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
{% endif %}
2525
<link rel="shortcut icon" href="{{ config.extra.base_url }}img/dk_docs_favicon_white.svg">
2626

27-
<title>{% if page.title and page.title != 'Home' %}{{ page.title }} - {% endif %}{{ config.site_name }} - DotKernel Documentation</title>
27+
<title>{% if page.title and page.title != 'Home' %}{{ page.title }} - {% endif %}{{ config.site_name }} - Dotkernel Documentation</title>
2828

2929
<link rel="stylesheet" href="{{ config.extra.base_url }}css/bootstrap.css">
3030
<link rel="stylesheet" href="{{ config.extra.base_url }}css/bootstrap-icons.min.css">

theme/partials/navbar.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
<div class="container justify-content-between">
33
<div class="dk-nav-icon d-flex align-items-center">
44
<a class="navbar-brand" href="https://docs.dotkernel.org/">
5-
<img alt="DotKernel Logo" class="d-inline-block align-text-top" height="50"
5+
<img alt="Dotkernel Logo" class="d-inline-block align-text-top" height="50"
66
src="{{ config.extra.base_url }}/img/dk_logomark_white.svg" width="45"/>
77
</a>
88

99
<div class="dk-nav-icon-items">
10-
<span style="font-size: 12px; line-height: 13px">DotKernel Documentation</span>
10+
<span style="font-size: 12px; line-height: 13px">Dotkernel Documentation</span>
1111

1212
<div class="dropdown" data-bs-theme="light">
1313
<span class="fw-bold dropdown-toggle dk-pkg-name" data-bs-toggle="dropdown" aria-expanded="false">{{ config.extra.project }}</span>
1414
<ul class="dropdown-menu">
1515
{% for project in config.extra.projects %}
1616
<li class="dropdown-item {{ 'bg-light' if config.extra.project == project.name }}">
1717
<a href="{{ project.docs_url }}" class="nav-link d-flex gap-4 align-items-center">
18-
<img alt="DotKernel Logo" class="d-inline-block align-text-top" height="50" src="https://docs.dotkernel.org/img/dk_logomark.svg" width="45" />
18+
<img alt="Dotkernel Logo" class="d-inline-block align-text-top" height="50" src="https://docs.dotkernel.org/img/dk_logomark.svg" width="45" />
1919
<div>
2020
<span class="fw-bold d-block">{{ project.name }}</span>
2121
<span>{{ project.description }}</span>

update_mkdocs_yml.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@
6565
mkdocs["extra"]["repo_name"] = mkdocs["repo_url"].replace("https://github.com/", "")
6666
mkdocs["extra"]["base_url"] = "https://docs.dotkernel.org/"
6767

68-
if mkdocs["extra"]["project"] == "DotKernel API":
68+
if mkdocs["extra"]["project"] == "API":
6969
mkdocs["extra"]["project_url"] = mkdocs["extra"]["docs_api_url"]
70-
elif mkdocs["extra"]["project"] == "DotKernel Admin":
70+
elif mkdocs["extra"]["project"] == "Admin":
7171
mkdocs["extra"]["project_url"] = mkdocs["extra"]["docs_admin_url"]
72-
elif mkdocs["extra"]["project"] == "DotKernel Frontend":
72+
elif mkdocs["extra"]["project"] == "Frontend":
7373
mkdocs["extra"]["project_url"] = mkdocs["extra"]["docs_frontend_url"]
74-
elif mkdocs["extra"]["project"] == "DotKernel Light":
74+
elif mkdocs["extra"]["project"] == "Light":
7575
mkdocs["extra"]["project_url"] = mkdocs["extra"]["docs_light_url"]
7676
elif mkdocs["extra"]["project"] == "Packages":
7777
mkdocs["extra"]["project_url"] = mkdocs["extra"]["docs_packages_url"]
@@ -81,27 +81,27 @@
8181
mkdocs["extra"]["projects"] = [
8282
{
8383
"name": "API",
84-
"description": "DotKernel API",
84+
"description": "Dotkernel API",
8585
"docs_url": mkdocs["extra"]["docs_api_url"],
8686
},
8787
{
8888
"name": "Admin",
89-
"description": "DotKernel Admin application",
89+
"description": "Dotkernel Admin",
9090
"docs_url": mkdocs["extra"]["docs_admin_url"],
9191
},
9292
{
9393
"name": "Frontend",
94-
"description": "DotKernel Frontend application",
94+
"description": "Dotkernel Frontend",
9595
"docs_url": mkdocs["extra"]["docs_frontend_url"],
9696
},
9797
{
9898
"name": "Light",
99-
"description": "DotKernel Light application",
99+
"description": "Dotkernel Light",
100100
"docs_url": mkdocs["extra"]["docs_light_url"],
101101
},
102102
{
103103
"name": "Packages",
104-
"description": "DotKernel packages",
104+
"description": "Dotkernel packages",
105105
"docs_url": mkdocs["extra"]["docs_packages_url"],
106106
},
107107
{

0 commit comments

Comments
 (0)