mirror of
https://github.com/jfmcbrayer/brutaldon
synced 2024-12-22 13:26:14 +01:00
22 lines
571 B
HTML
22 lines
571 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
{% block title %} Brutaldon ({{ own_acct.username }}) - toot {% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 class="title" >Toot!</h1>
|
|
<div class="box">
|
|
{% include "main/post_partial.html" %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block page_scripts_inline %}
|
|
<script type="application/javascript">
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
Mousetrap.bind('ctrl+enter', function(e) {
|
|
Intercooler.triggerRequest("#post-form");
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %}
|