Initial commit

This commit is contained in:
2019-12-14 19:07:29 +01:00
parent ef259cf158
commit 1c807c2af4
40 changed files with 9502 additions and 0 deletions

20
templates/edit.html Normal file
View File

@@ -0,0 +1,20 @@
{% extends "layout/default.html" %}
{% block extend_head %}
<script src="{{ url_for('static', filename='js/socket.io.js') }}"></script>
<script>
const socket = io();
socket.on("connect", () => {
//socket.emit("connect", {data: "ฅ^•ﻌ•^ฅ"});
});
socket.on("msg", (data) => {
console.log(data);
});
</script>
{% endblock %}
{% block content %}
{% endblock %}