Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# Public Facts Database

A static website for hosting verified facts, statements, and hypotheses with multi-language support.

## Features

- Multi-language support (English, Russian, Spanish, French, German)
- Language selection with localStorage persistence
- Clear categorization: Facts, Statements, and Hypotheses
- Status indicators: Likely True, Likely False, Unclear
- Confirmations and refutations with references
- All content in public domain

## Structure

```
docs/
├── index.html # Main listing page
├── styles.css # Global styles
├── main.js # Language selection logic
├── facts/ # Individual fact pages
│ ├── fact-001.html
│ ├── fact-002.html
│ └── hypothesis-001.html
└── README.md # This file
```

## Adding New Facts

To add a new fact:

1. Create a new HTML file in the `facts/` directory
2. Use the existing fact pages as templates
3. Include all language versions in `lang-section` divs with appropriate `data-lang` attributes
4. Add confirmations and refutations with proper language badges
5. Update the main `index.html` to include the new fact in the listing

## Language Support

Each fact page should include:
- Statement in all supported languages
- Confirmations (links with language tags)
- Refutations (links with language tags)
- If no references exist in selected languages, show references in other languages with markers

## Data Format

Each fact should contain:
- Unique ID (e.g., `fact-001`, `hypothesis-001`)
- Status: `status-likely-true`, `status-likely-false`, or `status-unclear`
- Multi-language statements
- References with language tags
- Public domain license notice

## GitHub Pages

This site is designed to be hosted on GitHub Pages. To enable:

1. Go to repository Settings
2. Navigate to Pages section
3. Set source to "Deploy from a branch"
4. Select branch and `/docs` folder
5. Save

The site will be available at: `https://deep-assistant.github.io/master-plan/`

## Contributing

All content must be:
- Factually accurate with verifiable sources
- Available in public domain
- Properly cited with references
- Available in multiple languages when possible

## License

All content in this database is in the public domain.
4 changes: 4 additions & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# GitHub Pages Configuration
title: Public Facts Database
description: A collection of verified statements, facts, and hypotheses with supporting evidence
theme: null
102 changes: 102 additions & 0 deletions docs/facts/TEMPLATE.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>[TITLE] - Public Facts Database</title>
<link rel="stylesheet" href="../styles.css">
</head>
<body>
<header>
<h1>[TITLE]</h1>
<p class="fact-id">ID: [ID]</p>
<p class="fact-status status-[STATUS]">Status: [STATUS_TEXT]</p>
<div class="language-selector">
<label for="language-filter">Select Languages:</label>
<div class="language-checkboxes">
<label><input type="checkbox" class="lang-checkbox" value="en" checked> English</label>
<label><input type="checkbox" class="lang-checkbox" value="ru" checked> Русский</label>
<label><input type="checkbox" class="lang-checkbox" value="es" checked> Español</label>
<label><input type="checkbox" class="lang-checkbox" value="fr" checked> Français</label>
<label><input type="checkbox" class="lang-checkbox" value="de" checked> Deutsch</label>
</div>
</div>
<div style="margin-top: 15px;">
<a href="../index.html" class="button">Back to List</a>
</div>
</header>

<main>
<!-- Statement in all languages -->
<section>
<h2>Statement</h2>

<div class="lang-section" data-lang="en">
<h3>English <span class="lang-badge">EN</span></h3>
<p>[STATEMENT IN ENGLISH]</p>
</div>

<div class="lang-section" data-lang="ru">
<h3>Русский <span class="lang-badge">RU</span></h3>
<p>[STATEMENT IN RUSSIAN]</p>
</div>

<div class="lang-section" data-lang="es">
<h3>Español <span class="lang-badge">ES</span></h3>
<p>[STATEMENT IN SPANISH]</p>
</div>

<div class="lang-section" data-lang="fr">
<h3>Français <span class="lang-badge">FR</span></h3>
<p>[STATEMENT IN FRENCH]</p>
</div>

<div class="lang-section" data-lang="de">
<h3>Deutsch <span class="lang-badge">DE</span></h3>
<p>[STATEMENT IN GERMAN]</p>
</div>
</section>

<!-- Confirmations -->
<section class="references-section">
<h2>Confirmations</h2>
<p>Supporting evidence for this statement:</p>

<div class="reference-item" data-lang="en">
<h4>[REFERENCE TITLE] <span class="lang-badge">EN</span></h4>
<p>[REFERENCE DESCRIPTION]</p>
<p><a href="[URL]" class="reference-link" target="_blank">[URL]</a></p>
</div>

<!-- Add more references as needed -->
</section>

<!-- Refutations -->
<section class="references-section">
<h2>Refutations</h2>
<p>Contradicting claims:</p>

<div class="reference-item" data-lang="en">
<h4>[REFUTATION TITLE] <span class="lang-badge">EN</span></h4>
<p>[REFUTATION DESCRIPTION]</p>
<p><a href="[URL]" class="reference-link" target="_blank">[URL]</a></p>
</div>

<!-- Add more refutations as needed, or note if none exist -->
</section>

<!-- Public Domain Notice -->
<section>
<h2>License & Attribution</h2>
<p>This content is in the public domain. The facts and references are compiled from publicly available sources.</p>
<p><strong>Last Updated:</strong> [DATE]</p>
</section>
</main>

<footer>
<p>All content is in the public domain.</p>
</footer>

<script src="../main.js"></script>
</body>
</html>
134 changes: 134 additions & 0 deletions docs/facts/fact-001.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fact: Earth is Round - Public Facts Database</title>
<link rel="stylesheet" href="../styles.css">
</head>
<body>
<header>
<h1>Fact: Earth is Round</h1>
<p class="fact-id">ID: fact-001</p>
<p class="fact-status status-likely-true">Status: Likely True</p>
<div class="language-selector">
<label for="language-filter">Select Languages:</label>
<div class="language-checkboxes">
<label><input type="checkbox" class="lang-checkbox" value="en" checked> English</label>
<label><input type="checkbox" class="lang-checkbox" value="ru" checked> Русский</label>
<label><input type="checkbox" class="lang-checkbox" value="es" checked> Español</label>
<label><input type="checkbox" class="lang-checkbox" value="fr" checked> Français</label>
<label><input type="checkbox" class="lang-checkbox" value="de" checked> Deutsch</label>
</div>
</div>
<div style="margin-top: 15px;">
<a href="../index.html" class="button">Back to List</a>
</div>
</header>

<main>
<!-- Statement in all languages -->
<section>
<h2>Statement</h2>

<div class="lang-section" data-lang="en">
<h3>English <span class="lang-badge">EN</span></h3>
<p>The Earth is approximately spherical in shape, slightly oblate due to its rotation. It is not a perfect sphere but an oblate spheroid with an equatorial bulge.</p>
</div>

<div class="lang-section" data-lang="ru">
<h3>Русский <span class="lang-badge">RU</span></h3>
<p>Земля имеет приблизительно сферическую форму, слегка сплюснутую из-за вращения. Это не идеальная сфера, а сплюснутый сфероид с экваториальным выпуклостью.</p>
</div>

<div class="lang-section" data-lang="es">
<h3>Español <span class="lang-badge">ES</span></h3>
<p>La Tierra tiene forma aproximadamente esférica, ligeramente achatada debido a su rotación. No es una esfera perfecta sino un esferoide oblato con un abultamiento ecuatorial.</p>
</div>

<div class="lang-section" data-lang="fr">
<h3>Français <span class="lang-badge">FR</span></h3>
<p>La Terre a une forme approximativement sphérique, légèrement aplatie en raison de sa rotation. Ce n'est pas une sphère parfaite mais un sphéroïde aplati avec un renflement équatorial.</p>
</div>

<div class="lang-section" data-lang="de">
<h3>Deutsch <span class="lang-badge">DE</span></h3>
<p>Die Erde hat eine annähernd kugelförmige Gestalt, die aufgrund ihrer Rotation leicht abgeflacht ist. Sie ist keine perfekte Kugel, sondern ein abgeplattetes Sphäroid mit einer äquatorialen Ausbuchtung.</p>
</div>
</section>

<!-- Confirmations -->
<section class="references-section">
<h2>Confirmations</h2>
<p>Supporting evidence for this statement:</p>

<div class="reference-item" data-lang="en">
<h4>NASA - Earth Fact Sheet <span class="lang-badge">EN</span></h4>
<p>NASA provides detailed measurements of Earth's dimensions, confirming its oblate spheroid shape.</p>
<p><a href="https://nssdc.gsfc.nasa.gov/planetary/factsheet/earthfact.html" class="reference-link" target="_blank">https://nssdc.gsfc.nasa.gov/planetary/factsheet/earthfact.html</a></p>
</div>

<div class="reference-item" data-lang="en">
<h4>Wikipedia - Figure of the Earth <span class="lang-badge">EN</span></h4>
<p>Comprehensive article describing the shape of Earth with scientific evidence.</p>
<p><a href="https://en.wikipedia.org/wiki/Figure_of_the_Earth" class="reference-link" target="_blank">https://en.wikipedia.org/wiki/Figure_of_the_Earth</a></p>
</div>

<div class="reference-item" data-lang="ru">
<h4>Википедия - Фигура Земли <span class="lang-badge">RU</span></h4>
<p>Статья о форме Земли с научными доказательствами.</p>
<p><a href="https://ru.wikipedia.org/wiki/Фигура_Земли" class="reference-link" target="_blank">https://ru.wikipedia.org/wiki/Фигура_Земли</a></p>
</div>

<div class="reference-item" data-lang="es">
<h4>Wikipedia - Forma de la Tierra <span class="lang-badge">ES</span></h4>
<p>Artículo sobre la forma de la Tierra con evidencia científica.</p>
<p><a href="https://es.wikipedia.org/wiki/Forma_de_la_Tierra" class="reference-link" target="_blank">https://es.wikipedia.org/wiki/Forma_de_la_Tierra</a></p>
</div>

<div class="reference-item" data-lang="fr">
<h4>Wikipédia - Figure de la Terre <span class="lang-badge">FR</span></h4>
<p>Article sur la forme de la Terre avec preuves scientifiques.</p>
<p><a href="https://fr.wikipedia.org/wiki/Figure_de_la_Terre" class="reference-link" target="_blank">https://fr.wikipedia.org/wiki/Figure_de_la_Terre</a></p>
</div>

<div class="reference-item" data-lang="de">
<h4>Wikipedia - Erdgestalt <span class="lang-badge">DE</span></h4>
<p>Artikel über die Form der Erde mit wissenschaftlichen Beweisen.</p>
<p><a href="https://de.wikipedia.org/wiki/Erdgestalt" class="reference-link" target="_blank">https://de.wikipedia.org/wiki/Erdgestalt</a></p>
</div>
</section>

<!-- Refutations -->
<section class="references-section">
<h2>Refutations</h2>
<p>Contradicting claims (for educational purposes):</p>

<div class="reference-item" data-lang="en">
<h4>Note on Flat Earth Claims <span class="lang-badge">EN</span></h4>
<p>While some groups promote flat Earth theories, these have been thoroughly debunked by scientific evidence including satellite imagery, physics, and astronomical observations.</p>
<p><em>No credible scientific sources support flat Earth claims.</em></p>
</div>

<div class="reference-item" data-lang="ru">
<h4>Примечание о теориях плоской Земли <span class="lang-badge">RU</span></h4>
<p>Хотя некоторые группы продвигают теории плоской Земли, они были полностью опровергнуты научными доказательствами, включая спутниковые снимки, физику и астрономические наблюдения.</p>
<p><em>Нет авторитетных научных источников, поддерживающих теории плоской Земли.</em></p>
</div>
</section>

<!-- Public Domain Notice -->
<section>
<h2>License & Attribution</h2>
<p>This content is in the public domain. The facts and references are compiled from publicly available scientific sources.</p>
<p><strong>Last Updated:</strong> 2025-10-30</p>
</section>
</main>

<footer>
<p>All content is in the public domain.</p>
</footer>

<script src="../main.js"></script>
</body>
</html>
Loading