Cailean Finn
9 months ago
8 changed files with 170 additions and 138 deletions
@ -0,0 +1,8 @@ |
|||
{% extends "base.html" %} |
|||
{% block title %}Ø | {{ title }}{% endblock %} |
|||
{% block content %} |
|||
<h1>{{ title }}</h1> |
|||
<div> |
|||
{{ content | safe }} |
|||
</div> |
|||
{% endblock %} |
@ -1,22 +1,30 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<html lang="en"> |
|||
<head> |
|||
<title>My Wiki</title> |
|||
</head> |
|||
<meta charset="UTF-8"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|||
<title>{% block title %}{% endblock %}</title> |
|||
<link rel="stylesheet" href="{{ url_for('static', filename='assets/styles.css') }}"> |
|||
<body> |
|||
<h1>Welcome to My Wiki</h1> |
|||
<ul> |
|||
{% for page_title, page_info in pages.items() %} |
|||
<li> |
|||
<h2>{{ page_title }}</h2> |
|||
<div>{{ page_info.content|safe }}</div> |
|||
{% if page_info.images %} |
|||
{% for image_url in page_info.images %} |
|||
<li><img src="{{ image_url }}" alt="Image"></li> |
|||
{% endfor %} |
|||
{% endif %} |
|||
</li> |
|||
{% endfor %} |
|||
</ul> |
|||
<div class='main-cont'> |
|||
<div class='nav-cont'> |
|||
<div class='header-title'> |
|||
<a href="/">CØNCEPTNULL</a> |
|||
</div> |
|||
<div class='nav-element-cont'> |
|||
{% for key, element in nav_elements.items() %} |
|||
<div class='nav-element'><a href="{{ url_for('page_content', title=element.title) }}">{{ element.title }}</a><div class='spinning-star'>🞱</div></div> |
|||
{% endfor %} |
|||
</div> |
|||
|
|||
</div> |
|||
<div class="content"> |
|||
{% block content %} |
|||
{% endblock %} |
|||
</div> |
|||
</div> |
|||
<div class="footer"> |
|||
<a href="https://wiki.conceptnull.org/" target="_blank"><div style="display: inline-flex; text-align: center; justify-content: center; align-items: center; line-height: 100%; padding: 3.3px; font-size: 12px; font-style: normal; object-fit: contain; background: rgb(255, 255, 255); color: rgb(0, 0, 0); text-shadow: rgb(8, 0, 255) 0px 3px 3px; flex-wrap: wrap;"><span style="display:flex;">hypertext connection<img src="https://i-love-everything.com/buttons/img/67.gif" style="max-height: 32px;"></span><span style="width:100%;text-shadow:0 0 5px #fff">𓆝 𓆟 𓆞 𓆝</span></div></a> |
|||
</div> |
|||
</body> |
|||
</html> |
|||
</html> |
|||
|
@ -1,9 +0,0 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<title>My Wiki</title> |
|||
</head> |
|||
<body> |
|||
<h1>Welcome to My Wiki</h1> |
|||
</body> |
|||
</html> |
@ -0,0 +1,36 @@ |
|||
{% extends "base.html" %} |
|||
{% block title %} Ø | Home{% endblock %} |
|||
{% block content %} |
|||
<div class='section-cont'> |
|||
<div class='section'> |
|||
<div class='section-title'><div style="display: inline-flex; text-align: center; justify-content: center; align-items: center; line-height: 100%; padding: 3.3px; font-size: 25px; font-style: italic; object-fit: contain; font-family: monospace; color: white; text-shadow: white 0px 5px 5px; text-decoration: none; width: 100%;">articles <img src="https://i-love-everything.com/buttons/img/7.gif" style="max-height: 32px;"></div></div> |
|||
<div class='section-group'> |
|||
{% for key, values in articles.items() %} |
|||
<div class='section-element'><a href="{{ url_for('page_content', title=values.title) }}">↘ {{ values.title}}</a></div> |
|||
<div class='section-date'>🙿 {{ values.date }}</div> |
|||
<div class='section-img'><a href="{{ url_for('page_content', title=values.title) }}"><img src="{{ values.source }}"></a></div> |
|||
{% endfor %} |
|||
</div> |
|||
</div> |
|||
<div class='section'> |
|||
<div class='section-title'><div style="display: inline-flex; text-align: center; justify-content: center; align-items: center; line-height: 100%; padding: 2.2px; font-size: 25px; font-style: oblique; object-fit: contain; font-family: monospace; color: white; text-shadow: red 0px 2px 5px; width: 100%;">newsletters<br><img src="https://i-love-everything.com/buttons/img/34.gif" style="max-height: 32px;"></div></div> |
|||
<div class='section-group'> |
|||
{% for key, values in newsletters.items() %} |
|||
<div class='section-element'><a href="{{ url_for('page_content', title=values.title) }}">↘ {{ values.title }}</a></div> |
|||
<div class='section-date'>🙿 {{ values.date }}</div> |
|||
<div class='section-img'><a href="{{ url_for('page_content', title=values.title) }}"><img src="{{ values.source}}"></a></div> |
|||
{% endfor %} |
|||
</div> |
|||
</div> |
|||
<div class='section'> |
|||
<div class='section-title'><div style="display: inline-flex; text-align: center; justify-content: center; align-items: center; line-height: 100%; padding: 3.3px; font-size: 25px; font-style: normal; object-fit: contain; font-family: monospace; color: white; border: 0px solid white; width: 100%;">projects<img src="https://i-love-everything.com/buttons/img/26.gif" style="max-height: 32px;"></div></div> |
|||
<div class='section-group'> |
|||
{% for key, values in projects.items() %} |
|||
<div class='section-element'><a href="{{ url_for('page_content', title=values.title) }}">↘ {{ values.title }}</a></div> |
|||
<div class='section-date'>🙿 {{ values.date }}</div> |
|||
<div class='section-img'><a href="{{ url_for('page_content', title=values.title) }}"><img src="{{ values.source }}"></a></div> |
|||
{% endfor %} |
|||
</div> |
|||
</div> |
|||
</div> |
|||
{% endblock %} |
@ -1,62 +0,0 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="en"> |
|||
<head> |
|||
<meta charset="UTF-8"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|||
<title>concept null</title> |
|||
<link rel="stylesheet" href="{{ url_for('static', filename='assets/styles.css') }}"> |
|||
</head> |
|||
<body> |
|||
<div class='main-cont'> |
|||
<div class='nav-cont'> |
|||
<div class='header-title'> |
|||
CONCEPTNULL |
|||
</div> |
|||
<div class='header-summary'> |
|||
summary about us |
|||
</div> |
|||
<div class='nav-element-cont'> |
|||
{% for nav_element in nav_elements %} |
|||
<div class='nav-element'><a href="{{ url_for('page_content', title=nav_elements[nav_element]['title']) }}">{{ nav_elements[nav_element]['title'] }}</a><div class='spinning-star'>🞱</div></div> |
|||
{% endfor %} |
|||
</div> |
|||
</div> |
|||
<span class='line'></span> |
|||
|
|||
<div class='section-cont'> |
|||
<div class='section'> |
|||
<div class='section-title'><div style="display: inline-flex; text-align: center; justify-content: center; align-items: center; line-height: 100%; padding: 3.3px; font-size: 20px; font-style: italic; object-fit: contain; font-family: monospace; color: white; text-shadow: white 0px 5px 5px; text-decoration: none;">articles <img src="https://i-love-everything.com/buttons/img/7.gif" style="max-height: 32px;"></div></div> |
|||
<div class='section-group'> |
|||
{% for article in articles %} |
|||
<div class='section-element'><a href="{{ url_for('page_content', title=articles[article]['title']) }}">↘ {{ articles[article]['title'] }}</a></div> |
|||
<div class='section-date'>🙿 {{ articles[article]['date'] }}</div> |
|||
<div class='section-img'><a href="{{ url_for('page_content', title=articles[article]['title']) }}"><img src="{{ articles[article]['source'] }}"></a></div> |
|||
{% endfor %} |
|||
</div> |
|||
</div> |
|||
<div class='section'> |
|||
<div class='section-title'><div style="display: inline-flex; text-align: center; justify-content: center; align-items: center; line-height: 100%; padding: 2.2px; font-size: 20px; font-style: oblique; object-fit: contain; font-family: monospace; color: white; text-shadow: red 0px 2px 5px;">newsletters<br><img src="https://i-love-everything.com/buttons/img/34.gif" style="max-height: 32px;"></div></div> |
|||
<div class='section-group'> |
|||
{% for newsletter in newsletters %} |
|||
<div class='section-element'><a href="{{ url_for('page_content', title=newsletters[newsletter]['title']) }}">↘ {{ newsletters[newsletter]['title'] }}</a></div> |
|||
<div class='section-date'>🙿 {{ newsletters[newsletter]['date'] }}</div> |
|||
<div class='section-img'><a href="{{ url_for('page_content', title=newsletters[newsletter]['title']) }}"><img src="{{ newsletters[newsletter]['source'] }}"></a></div> |
|||
{% endfor %} |
|||
</div> |
|||
</div> |
|||
<div class='section'> |
|||
<div class='section-title'><div style="display: inline-flex; text-align: center; justify-content: center; align-items: center; line-height: 100%; padding: 3.3px; font-size: 20px; font-style: normal; object-fit: contain; font-family: monospace; color: white; border: 1px solid white;">projects<img src="https://i-love-everything.com/buttons/img/26.gif" style="max-height: 32px;"></div></div> |
|||
<div class='section-group'> |
|||
{% for project in projects %} |
|||
<div class='section-element'><a href="{{ url_for('page_content', title=projects[project]['title']) }}">↘ {{ projects[project]['title'] }}</a></div> |
|||
<div class='section-date'>🙿 {{ projects[project]['date'] }}</div> |
|||
<div class='section-img'><a href="{{ url_for('page_content', title=projects[project]['title']) }}"><img src="{{ projects[project]['source'] }}"></a></div> |
|||
{% endfor %} |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
<div style="display: inline-flex; text-align: center; justify-content: center; align-items: center; line-height: 100%; padding: 3.3px; font-size: 12px; font-style: normal; object-fit: contain; background: rgb(0, 0, 0); color: rgb(255, 255, 255); text-shadow: rgb(8, 0, 255) 0px 3px 3px; flex-wrap: wrap;"><span style="display:flex;">hypertext connection<img src="https://i-love-everything.com/buttons/img/67.gif" style="max-height: 32px;"></span><span style="width:100%;text-shadow:0 0 5px #fff">𓆝 𓆟 𓆞 𓆝</span></div> |
|||
</div> |
|||
</body> |
|||
</html> |
@ -1,14 +0,0 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="en"> |
|||
<head> |
|||
<meta charset="UTF-8"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|||
<title>{{ title }}</title> |
|||
</head> |
|||
<body> |
|||
<h1>{{ title }}</h1> |
|||
<div> |
|||
{{ content | safe }} |
|||
</div> |
|||
</body> |
|||
</html> |
Loading…
Reference in new issue