Skip to content

Commit

Permalink
make static html work
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Meerwald committed Dec 5, 2024
1 parent 930ec69 commit 9820254
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ CMakeLists.txt.user
.idea/
cmake-build-*/
.vs/
_site
13 changes: 9 additions & 4 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
title: "Onlooker & Cutelooker"
author:
name: ""
description: ""
name: "Anti-Tamper Team @ Denuvo"
description: "Simple memory profiler for Windows"
remote_theme: jekyll/minima@v2.5.2

defaults:
Expand All @@ -11,14 +11,19 @@ defaults:
values:
layout: default
image: https://denuvosoftwaresolutions.github.io/Onlooker/Cutelooker-example.png
description: "Simple memory profiler for Windows."
description: "Simple memory profiler for Windows"

header_pages:
- ""
-

minima:
# generate social links in footer
social_links:
twitter: gamingatdenuvo
github: denuvosoftwaresolutions
linkedincompany: denuvo-gmbh

plugins:
- jekyll-default-layout
- jekyll-remote-theme
- jekyll-optional-front-matter
6 changes: 2 additions & 4 deletions docs/_includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<data class="u-url" href="{{ "/" | relative_url }}"></data>

<div class="wrapper">
<!--
<div class="footer-col-wrapper">
<div class="footer-col">
{%- if site.author %}
Expand All @@ -17,12 +16,11 @@
{%- endif %}
</div>
<div class="footer-col">
{%- if site.description %}
<p>{{ site.description | escape }}</p>
{%- if site.bio %}
<p>{{ site.bio | escape }}</p>
{%- endif %}
</div>
</div>
-->
<div class="social-links">
{%- include social.html -%}
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/_includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{%- seo -%}
<link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
<link rel="stylesheet" href="{{ "/assets/style.css" | relative_url }}">
{%- if jekyll.environment == 'production' and site.google_analytics -%}
{%- include google-analytics.html -%}
{%- endif -%}
Expand Down
6 changes: 4 additions & 2 deletions docs/_includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
{%- assign default_paths = site.pages | map: "path" -%}
{%- assign page_paths = site.header_pages | default: default_paths -%}
{%- assign titles_size = site.pages | map: 'title' | join: '' | size -%}
<!-- <a class="site-title" rel="author" href="{{ "/" | relative_url }}"><img alt="Denuvo by Irdeto" src="denuvo-by-irdeto.jpeg"> {{ site.title | escape }}</a> -->
<span class="site-title"><img alt="Denuvo by Irdeto" src="denuvo-by-irdeto.png" style="padding-right: 30px;"> {{ site.title | escape }}</span>
<div class="site-title">
<img alt="Denuvo by Irdeto" src="denuvo-by-irdeto.png" style="padding-right: 30px;">
<a href="{{ "/" | relative_url }}" style="display:block;">{{ site.title | escape }}</a>
</div>

{%- if titles_size > 0 -%}
<nav class="site-nav">
Expand Down
1 change: 1 addition & 0 deletions docs/assets/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/index.md

0 comments on commit 9820254

Please sign in to comment.