Skip to content

Commit 99fb6d7

Browse files
committed
wip
1 parent b6d7158 commit 99fb6d7

27 files changed

+302
-7
lines changed

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,14 @@
11
/profile.md
2+
3+
# Jekyll
4+
_site/
5+
.sass-cache/
6+
.jekyll-cache/
7+
.jekyll-metadata
8+
# Bundler
9+
.bundle/
10+
vendor/
11+
Gemfile.lock
12+
13+
.logs/
14+
.*

Gemfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
source "https://rubygems.org"
2+
gem "github-pages", group: :jekyll_plugins
3+
4+
# Optional: Add these gems for enhanced functionality
5+
gem "jekyll-feed", "~> 0.12"
6+
gem "jekyll-sitemap", "~> 1.4"
7+
gem "jekyll-seo-tag", "~> 2.6"
8+
9+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
10+
# and associated library.
11+
platforms :mingw, :x64_mingw, :mswin, :jruby do
12+
gem "tzinfo", "~> 1.2"
13+
gem "tzinfo-data"
14+
end
15+
16+
# Performance-booster for watching directories on Windows
17+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
layout: default
3+
title: Science Project Repository
4+
---
5+
16
# 🧬 Speculative Science Papers
27

38
*A collection of theoretical frameworks exploring the deep structure of reality through mathematical formalism and cross-disciplinary synthesis*
@@ -138,4 +143,4 @@ To future researchers who will either prove these ideas right or—even better
138143

139144
---
140145

141-
*"The universe is not only stranger than we imagine—it's stranger than we can imagine. But we must try anyway."*
146+
*"The universe is not only stranger than we imagine—it's stranger than we can imagine. But we must try anyway."*

_config.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# _config.yml
2+
title: Science Project Showcase
3+
description: A showcase of research and ideas from the Science project repository.
4+
baseurl: "" # the subpath of your site, e.g. /blog
5+
url: "" # the base hostname & protocol for your site
6+
markdown: kramdown
7+
highlighter: rouge
8+
theme: minima
9+
plugins:
10+
theme: jekyll-theme-minimal
11+
12+
exclude:
13+
- Gemfile
14+
- Gemfile.lock
15+
- .idea/
16+
- Science.iml
17+
- .logs/
18+
- .git/
19+
- .gitignore
20+
collections:
21+
defaults:
22+
- README.md

_includes/footer.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<footer class="site-footer">
2+
<div class="footer-content">
3+
<p>&copy; {{ "now" | date: "%Y" }} {{ site.title }}. Powered by Jekyll & GitHub Pages.</p>
4+
<p>{{ site.description }}</p>
5+
</div>
6+
</footer>

_includes/header.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<header class="site-header">
2+
<div class="header-content">
3+
<h1><a href="{{ '/' | relative_url }}">{{ site.title | default: "Science Project Showcase" }}</a></h1>
4+
<nav class="site-nav">
5+
<a href="{{ '/' | relative_url }}">Home</a>
6+
<a href="{{ '/social/' | relative_url }}">Social Sciences</a>
7+
<a href="{{ '/scifi/' | relative_url }}">SciFi Concepts</a>
8+
<a href="{{ '/projects/' | relative_url }}">Projects</a>
9+
<a href="{{ '/profile/' | relative_url }}">Profile</a>
10+
</nav>
11+
</div>
12+
</header>

_layouts/default.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>{{ page.title | default: site.title }}</title>
7+
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
8+
<link rel="icon" type="image/x-icon" href="{{ '/favicon.ico' | relative_url }}">
9+
</head>
10+
<body>
11+
{% include header.html %}
12+
<main class="container">
13+
{{ content }}
14+
</main>
15+
{% include footer.html %}
16+
</body>
17+
</html>

_layouts/page.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="page-content">
6+
{{ content }}
7+
</div>
8+
9+
{% if page.collection %}
10+
<nav class="collection-nav">
11+
<h3>More in {{ page.collection | capitalize }}</h3>
12+
<ul>
13+
{% assign collection = site[page.collection] %}
14+
{% for item in collection %}
15+
{% unless item.url == page.url %}
16+
<li><a href="{{ item.url | relative_url }}">{{ item.title }}</a></li>
17+
{% endunless %}
18+
{% endfor %}
19+
</ul>
20+
</nav>
21+
{% endif %}

assets/css/style.css

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
---
3+
body {
4+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
5+
line-height: 1.6;
6+
margin: 0;
7+
padding: 0;
8+
background-color: #fdfdfd;
9+
color: #333;
10+
}
11+
.container {
12+
max-width: 800px;
13+
margin: 20px auto;
14+
padding: 0 20px;
15+
}
16+
.site-header {
17+
background-color: #f0f0f0;
18+
padding: 15px 0;
19+
text-align: center;
20+
border-bottom: 1px solid #ddd;
21+
}
22+
.site-header h1 {
23+
margin: 0;
24+
font-size: 1.8em;
25+
}
26+
.site-header h1 a {
27+
color: #333;
28+
text-decoration: none;
29+
}
30+
.site-header nav a {
31+
margin: 0 10px;
32+
color: #555;
33+
text-decoration: none;
34+
}
35+
.site-header nav a:hover {
36+
text-decoration: underline;
37+
}
38+
.site-footer {
39+
text-align: center;
40+
margin-top: 40px;
41+
padding: 20px 0;
42+
border-top: 1px solid #ddd;
43+
font-size: 0.9em;
44+
color: #777;
45+
}
46+
h1, h2, h3, h4, h5, h6 {
47+
margin-top: 1.5em;
48+
margin-bottom: 0.5em;
49+
font-weight: 600;
50+
}
51+
a { color: #007bff; }
52+
a:hover { text-decoration: underline; }

index.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
layout: default
3+
title: Welcome to Science Project Showcase
4+
description: A showcase of research and ideas from various scientific and conceptual explorations
5+
title: Welcome
6+
---
7+
8+
# Welcome to the Science Project Showcase
9+
This site hosts documentation, research papers, and proposals from various scientific and conceptual explorations. Browse through different categories to discover innovative ideas and theoretical frameworks.
10+
This site hosts documentation, research papers, and proposals from various scientific and conceptual explorations. Explore cutting-edge ideas across multiple domains of knowledge.
11+
Explore papers and simulations related to social dynamics, institutional analysis, and cognitive studies.
12+
13+
This site hosts documentation, research papers, and proposals from various scientific and conceptual explorations.
14+
15+
## Explore Content
16+
Explore papers and simulations related to social dynamics, institutional analysis, and cognitive studies:
17+
18+
Navigate through the different sections to find information:
19+
20+
* **[Social Sciences](./social/)**: Explore papers and simulations related to social dynamics, institutional analysis, and cognitive studies.
21+
* [Institutional Collapse Simulation](./social/institutional_collapse_simulation.tsx)
22+
* [Social Truth Proposal](./social/social_truth_proposal.html)
23+
* [Cognitive Effort Paper](./social/cognitive_effort_paper.html)
24+
* **[SciFi Concepts](./scifi/)**: Delve into theoretical proposals in speculative science.
25+
* [Superfluid Fusion Proposal](./scifi/superfluid_fusion_proposal.html)
26+
* [Multiverse Router Paper](./scifi/multiverse_router_paper.html)
27+
* **[Projects](./projects/)**: Discover various project papers and proposals.
28+
* [Orbital Dynamics Paper](./projects/orbital_dynamics_paper.html)
29+
* [Metacognitive Layer Paper](./projects/metacognitive_layer_paper.html)
30+
* **[My Profile](./profile.html)**
31+
32+
You can also browse the [main repository README](./README.html) for more general information.

0 commit comments

Comments
 (0)