seo
This commit is contained in:
9 files changed
+189
-6
No files matched your search
+14
-1
@@ -1,12 +1,25 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
{% set page_title %}{% block title %}myboker.org{% endblock %}{% endset %}
|
||||
{% set page_description %}{% block meta_description %}{{ seo_default_description }}{% endblock %}{% endset %}
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{% block title %}myboker.org{% endblock %}</title>
|
||||
<title>{{ page_title | trim }}</title>
|
||||
<meta name="description" content="{{ page_description | striptags | trim }}">
|
||||
<link rel="canonical" href="{{ seo_canonical_url }}">
|
||||
<meta property="og:site_name" content="myboker.org">
|
||||
<meta property="og:title" content="{{ page_title | trim }}">
|
||||
<meta property="og:description" content="{{ page_description | striptags | trim }}">
|
||||
<meta property="og:type" content="{% block og_type %}website{% endblock %}">
|
||||
<meta property="og:url" content="{{ seo_canonical_url }}">
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="{{ page_title | trim }}">
|
||||
<meta name="twitter:description" content="{{ page_description | striptags | trim }}">
|
||||
<link rel="icon" href="{{ url_for('static', filename='favicon.svg') }}" type="image/svg+xml">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/tokens.css') }}">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
||||
{% block structured_data %}{% endblock %}
|
||||
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Explore leagues · myboker.org{% endblock %}
|
||||
{% block title %}Explore Public Home Poker Leagues · myboker.org{% endblock %}
|
||||
{% block meta_description %}Browse public home poker league results, leaderboards, sessions, and player stats from groups using myboker.org.{% endblock %}
|
||||
{% block content %}
|
||||
|
||||
<div class="explore-header">
|
||||
|
||||
+29
-1
@@ -1,5 +1,33 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}myboker.org · Poker league records{% endblock %}
|
||||
{% block title %}Free Home Poker Tracker, Ledger & League Leaderboards · myboker.org{% endblock %}
|
||||
{% block meta_description %}Track home poker sessions, buy-ins, cashouts, settlements, player stats, and league leaderboards with a free append-only poker ledger built for private games.{% endblock %}
|
||||
{% block structured_data %}
|
||||
<script type="application/ld+json">
|
||||
{{ {
|
||||
"@context": "https://schema.org",
|
||||
"@type": "SoftwareApplication",
|
||||
"name": "myboker.org",
|
||||
"url": seo_site_url,
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"operatingSystem": "Web",
|
||||
"description": "Free home poker league tracker for sessions, ledgers, leaderboards, buy-ins, cashouts, and settlement records.",
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "USD"
|
||||
}
|
||||
} | tojson }}
|
||||
</script>
|
||||
<script type="application/ld+json">
|
||||
{{ {
|
||||
"@context": "https://schema.org",
|
||||
"@type": "WebSite",
|
||||
"name": "myboker.org",
|
||||
"url": seo_site_url,
|
||||
"description": "Home poker tracker for private game ledgers, sessions, settlement, and league leaderboards."
|
||||
} | tojson }}
|
||||
</script>
|
||||
{% endblock %}
|
||||
{% block page_class %}page--landing{% endblock %}
|
||||
{% block content %}
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Privacy Policy - myboker.org{% endblock %}
|
||||
{% block meta_description %}Privacy policy for myboker.org, including account data, home poker league records, session ledgers, cookies, security, and data rights.{% endblock %}
|
||||
{% block page_class %}page--public{% endblock %}
|
||||
{% block content %}
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Help - myboker.org{% endblock %}
|
||||
{% block title %}Home Poker League Tracker Help · myboker.org{% endblock %}
|
||||
{% block meta_description %}Learn how myboker.org tracks home poker leagues, sessions, players, ledger events, settlements, leaderboards, roles, and public or private league visibility.{% endblock %}
|
||||
{% block content %}
|
||||
|
||||
<div class="hero" style="padding-bottom:12px;">
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Terms of Service - myboker.org{% endblock %}
|
||||
{% block meta_description %}Terms of Service for myboker.org, a free record-keeping tool for private home poker leagues, ledgers, sessions, and statistics.{% endblock %}
|
||||
{% block page_class %}page--public{% endblock %}
|
||||
{% block content %}
|
||||
|
||||
|
||||
Reference in new issue
Block a user