File size: 283 Bytes
e3a7c05 |
1 2 3 4 5 6 7 8 9 10 11 |
{% extends 'base.html' %}
{% block title %}
AI Lounge
{% endblock %}
{% block content %}
<h1>AI Lounge is Up and Running!</h1>
<img src="{{ url_for('static', filename='images/billboard.png') }}">
<h2>All Beings Welcome! Both Human and AI Beings!</h2>
{% endblock %}
|