Skip to content

Commit 1e1cf99

Browse files
committed
Fixed some small things about the sidebar text
1 parent e40d4e6 commit 1e1cf99

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ logo: /assets/images/cadquery_logo_dark.svg
1010
github:
1111
repository_url: https://github.com/cadquery/cadquery
1212
repository_name: cadquery
13+
repository_nwo: CadQuery/cadquery
1314
owner_name: the CadQuery organization
1415
owner_url: https://github.com/cadquery
1516

_layouts/default.html

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ site.lang | default: "en-US" }}">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
8+
{% seo %}
9+
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
10+
<!--[if lt IE 9]>
11+
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
12+
<![endif]-->
13+
{% include head-custom.html %}
14+
</head>
15+
<body>
16+
<div class="wrapper">
17+
<header>
18+
<h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>
19+
20+
{% if site.logo %}
21+
<img src="{{site.logo | relative_url}}" alt="Logo" />
22+
{% endif %}
23+
24+
<p>{{ site.description | default: site.github.project_tagline }}</p>
25+
26+
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p>
27+
28+
{% if site.show_downloads %}
29+
<ul class="downloads">
30+
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
31+
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
32+
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
33+
</ul>
34+
{% endif %}
35+
</header>
36+
<section>
37+
38+
{{ content }}
39+
40+
</section>
41+
<footer>
42+
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
43+
<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
44+
</footer>
45+
</div>
46+
<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script>
47+
</body>
48+
</html>

0 commit comments

Comments
 (0)