Spaces:
Running
Running
Update templates/index.html
Browse files- templates/index.html +11 -3
templates/index.html
CHANGED
|
@@ -298,9 +298,17 @@
|
|
| 298 |
<div class="loading-text">AI is crafting your blog post...</div>
|
| 299 |
</div>
|
| 300 |
|
| 301 |
-
{% if
|
| 302 |
-
<div class="output-card"
|
| 303 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 304 |
</div>
|
| 305 |
{% endif %}
|
| 306 |
|
|
|
|
| 298 |
<div class="loading-text">AI is crafting your blog post...</div>
|
| 299 |
</div>
|
| 300 |
|
| 301 |
+
{% if paragraph %}
|
| 302 |
+
<div class="output-card">
|
| 303 |
+
<pre style="
|
| 304 |
+
white-space: pre-wrap;
|
| 305 |
+
font-family: 'Inter', sans-serif;
|
| 306 |
+
background: transparent;
|
| 307 |
+
border: none;
|
| 308 |
+
color: #2d2d4e;
|
| 309 |
+
line-height: 1.8;
|
| 310 |
+
font-size: 15px;
|
| 311 |
+
">{{ paragraph }}</pre>
|
| 312 |
</div>
|
| 313 |
{% endif %}
|
| 314 |
|