Skip to content

Commit

Permalink
Merge pull request #72 from mitsuki-jpg/develop
Browse files Browse the repository at this point in the history
BDW Fixes
  • Loading branch information
extreme4all authored Jan 23, 2024
2 parents 02ce95f + efb9abe commit 1829336
Show file tree
Hide file tree
Showing 11 changed files with 192 additions and 81 deletions.
4 changes: 4 additions & 0 deletions src/static/ember.botdetector.css
Original file line number Diff line number Diff line change
Expand Up @@ -732,3 +732,7 @@ article .card-icon img {
margin: 0px;
}
}
.loltable {
font-size:14px;
max-width:680px;
}
Binary file added src/static/meta/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/meta/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/meta/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/meta/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/meta/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/static/meta/favicon.ico
Binary file not shown.
Binary file added src/static/meta/metapage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/static/meta/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#f06262","background_color":"#0d1014","display":"standalone"}
29 changes: 28 additions & 1 deletion src/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,39 @@
<html lang="en">

<head>
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="/static/meta/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/static/meta/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/static/meta/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- Meta tags for character set and viewport settings -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Primary Meta Tags -->
<meta name="title" content="OSRS Bot Detector" />
<meta name="theme-color" content="#f06262" />
<meta name="description" content="We aim to detect bots in Old School RuneScape using Machine Learning Algorithms." />

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://osrsbotdetector.com" />
<meta property="og:title" content="OSRS Bot Detector" />
<meta name="theme-color" content="#f06262" />
<meta property="og:description" content="We aim to detect bots in Old School RuneScape using Machine Learning Algorithms.
" />
<meta property="og:image" content="/static/meta/metapage.png" />

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://osrsbotdetector.com" />
<meta property="twitter:title" content="OSRS Bot Detector" />
<meta property="twitter:description" content="We aim to detect bots in Old School RuneScape using Machine Learning Algorithms.
" />
<meta name="theme-color" content="#f06262" />
<meta property="twitter:image" content="/static/meta/metapage.png" />

<!-- Title of the page, dynamically set based on the template -->
<title>{{ title }}</title>
<title>OSRS Bot Detector</title>

<!-- Block for additional head content (may include scripts, styles, etc.) -->
{% block head %}
Expand Down
239 changes: 159 additions & 80 deletions src/templates/pages/faq.html

Large diffs are not rendered by default.

0 comments on commit 1829336

Please sign in to comment.