Skip to content

Commit c0a4c73

Browse files
committed
SEO: customize head tag
1 parent 5ecc869 commit c0a4c73

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

_config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
title: PSPDEV
2-
description: "PSP SDK: Development tools for the Playstation Portable"
2+
description: "An open source SDK for PlayStation Portable (PSP) development. It allows you to make apps and games for both custom and official firmwares. This is a community project made by enthusiasts, it is in no way affiliated with Sony."
33
theme: just-the-docs
44
url: "https://pspdev.github.io"
55

@@ -22,7 +22,7 @@ nav_external_links:
2222
back_to_top: true
2323
back_to_top_text: "Back to top"
2424

25-
footer_content: 'Copyright &copy; 2025 PSPDEV. Distributed by <a href="https://github.com/pspdev/pspdev.github.io/blob/master/LICENSE">The Unlicense.</a>'
25+
footer_content: 'Copyright &copy; 2025, PSPDEV. Distributed by <a href="https://github.com/pspdev/pspdev.github.io/blob/master/LICENSE">The Unlicense.</a>'
2626

2727
# Footer "Edit this page on GitHub" link text
2828
gh_edit_link: true # show or hide edit this page link

_includes/head.html

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<head>
2+
<meta charset="UTF-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
4+
5+
<link rel="stylesheet" href="{{ '/assets/css/just-the-docs-default.css' | relative_url }}">
6+
<link rel="stylesheet" href="{{ '/assets/css/just-the-docs-head-nav.css' | relative_url }}" id="jtd-head-nav-stylesheet">
7+
8+
<style id="jtd-nav-activation">
9+
{% include css/activation.scss.liquid %}
10+
</style>
11+
12+
{% if site.search_enabled != false %}
13+
<script src="{{ '/assets/js/vendor/lunr.min.js' | relative_url }}"></script>
14+
{% endif %}
15+
16+
<script src="{{ '/assets/js/just-the-docs.js' | relative_url }}"></script>
17+
<meta name="viewport" content="width=device-width, initial-scale=1">
18+
<title>{{ page.title }} | PSP SDK: Development tools for the Playstation Portable</title>
19+
20+
<!-- Uncomment to conditionally change the <title> content -->
21+
<!-- {% if page.title == "Home" %}
22+
<title>{{ page.title }} | PSP SDK: Development tools for the Playstation Portable</title>
23+
{% endif %}
24+
25+
{% if page.title != "Home" %}
26+
<title>{{ page.title }} | {{ site.title }}</title>
27+
{% endif %} -->
28+
29+
{% seo title=false %}
30+
</head>

0 commit comments

Comments
 (0)