Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5274a08e89 | ||
|
|
ae8db768c7 | ||
|
|
5a93bf75d2 | ||
|
|
87b7f51650 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
11
core/templates/base.html
Normal file
11
core/templates/base.html
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>{% block title %}Knowledge Base{% endblock %}</title>
|
||||||
|
{% block head %}{% endblock %}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{% block content %}{% endblock %}
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
14
core/templates/core/article_detail.html
Normal file
14
core/templates/core/article_detail.html
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
|
{% block title %}{{ article.title }}{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="container mt-5">
|
||||||
|
<h1>{{ article.title }}</h1>
|
||||||
|
<p class="text-muted">Published on {{ article.created_at|date:"F d, Y" }}</p>
|
||||||
|
<hr>
|
||||||
|
<div>
|
||||||
|
{{ article.content|safe }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
@ -137,12 +137,8 @@
|
|||||||
<body>
|
<body>
|
||||||
<main>
|
<main>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<h1>Analyzing your requirements and generating your website…</h1>
|
<h1>{{ project_name }}</h1>
|
||||||
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
<p>Where Ancient Metallurgy Meets Modern Commerce</p>
|
||||||
<span class="sr-only">Loading…</span>
|
|
||||||
</div>
|
|
||||||
<p>Appwizzy AI is collecting your requirements and applying the first changes.</p>
|
|
||||||
<p>This page will refresh automatically as the plan is implemented.</p>
|
|
||||||
<p>
|
<p>
|
||||||
Runtime: Django <code>{{ django_version }}</code> · Python <code>{{ python_version }}</code> —
|
Runtime: Django <code>{{ django_version }}</code> · Python <code>{{ python_version }}</code> —
|
||||||
UTC <code>{{ current_time|date:"Y-m-d H:i:s" }}</code>
|
UTC <code>{{ current_time|date:"Y-m-d H:i:s" }}</code>
|
||||||
|
|||||||
@ -18,7 +18,7 @@ def home(request):
|
|||||||
now = timezone.now()
|
now = timezone.now()
|
||||||
|
|
||||||
context = {
|
context = {
|
||||||
"project_name": "New Style",
|
"project_name": "BrassRoute",
|
||||||
"agent_brand": agent_brand,
|
"agent_brand": agent_brand,
|
||||||
"django_version": django_version(),
|
"django_version": django_version(),
|
||||||
"python_version": platform.python_version(),
|
"python_version": platform.python_version(),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user