Skip to content

Commit

Permalink
another update
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Whalley committed Feb 17, 2022
1 parent 0223fa2 commit 192982e
Show file tree
Hide file tree
Showing 24 changed files with 186 additions and 856 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
node_modules
public
resources
.netlify
.hugo_build.lock
435 changes: 0 additions & 435 deletions CHANGELOG.md

This file was deleted.

76 changes: 0 additions & 76 deletions CODE_OF_CONDUCT.md

This file was deleted.

22 changes: 0 additions & 22 deletions LICENSE

This file was deleted.

143 changes: 0 additions & 143 deletions README.md

This file was deleted.

7 changes: 0 additions & 7 deletions SECURITY.md

This file was deleted.

21 changes: 21 additions & 0 deletions assets/js/platformcheck.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
var OSName = 'Unknown OS';
if (navigator.userAgent.indexOf('Win') != -1) {
if (navigator.userAgent.indexOf('x64') != -1) {
OSName = 'Windows64';
} else {
OSName = 'Windows32';
}
}
if (navigator.userAgent.indexOf('Mac') != -1) OSName = 'MacOS';
if (navigator.userAgent.indexOf('Linux') != -1) OSName = 'Linux';
if (navigator.userAgent.indexOf('Android') != -1) OSName = 'Android';
if (navigator.userAgent.indexOf('like Mac') != -1) OSName = 'iOS';
console.log('Your OS: ' + OSName);

if ((OSName != 'Unknown OS') && (OSName != 'iOS')) {
document.getElementById(OSName).className = 'current';
document.getElementById('show-advanced').className = 'show';
document.getElementById('list-all').className = '';
} else {
document.getElementById('list-all').className = 'show';
}
9 changes: 9 additions & 0 deletions assets/scss/layouts/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -442,3 +442,12 @@ button#doks-versions {
.dropdown-item:active {
color: inherit;
}

.feature {
display: inline-flex;
align-items: center;
justify-content: center;
height: 3rem;
width: 3rem;
font-size: 1.5rem;
}
24 changes: 0 additions & 24 deletions config/_default/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,30 +13,6 @@ rssLimit = 10
defaultContentLanguage = "en"
# defaultContentLanguageInSubdir = true

# add redirects/headers
[outputs]
home = ["HTML", "RSS", "REDIRECTS", "HEADERS"]
section = ["HTML", "RSS", "SITEMAP"]

# remove .{ext} from text/netlify
[mediaTypes."text/netlify"]
suffixes = [""]
delimiter = ""

# add output format for netlify _redirects
[outputFormats.REDIRECTS]
mediaType = "text/netlify"
baseName = "_redirects"
isPlainText = true
notAlternative = true

# add output format for netlify _headers
[outputFormats.HEADERS]
mediaType = "text/netlify"
baseName = "_headers"
isPlainText = true
notAlternative = true

# add output format for section sitemap.xml
[outputFormats.SITEMAP]
mediaType = "application/xml"
Expand Down
2 changes: 1 addition & 1 deletion config/_default/menus/menus.en.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
name = "Download"
identifier = "download"
weight = 10
url = "docs/mmex/downloads"
url = "docs/downloads/latest"

# News
[[main]]
Expand Down
10 changes: 0 additions & 10 deletions config/_default/params.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,6 @@ description = "Free, easy-to-use, personal finance software"
## Documentation
# docsVersion = "0.3"

## Open Graph
images = ["doks.png"]
ogLocale = "en_US"
domainTLD = "doks.netlify.app"
titleHome = "Doks Theme"

## Twitter Cards
twitterSite = "@getdoks"
twitterCreator = "@henkverlinde"

## JSON-LD
# schemaType = "Person"
schemaType = "Organization"
Expand Down
30 changes: 0 additions & 30 deletions content/en/docs/MMEX/downloads/index.md

This file was deleted.

9 changes: 9 additions & 0 deletions content/en/docs/downloads/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title : "Downloads"
description: "MMEX Downloads"
lead: ""
date: 2020-10-06T08:48:45+00:00
lastmod: 2020-10-06T08:48:45+00:00
draft: false
images: []
---
Loading

0 comments on commit 192982e

Please sign in to comment.