mattermost-order-bot/app/layout/footer.php
2019-11-09 11:10:17 +01:00

28 lines
718 B
PHP

<footer>
<p>&copy; Unachieved <a href="http://www.evolutis.fr/">Evolutis</a> & <a href="http://www.ip-formation.com/">IP-formation</a>
2011 - develloped by Emmanuel ROY on an Debian dev2 original totally reindexed by sadness</p>
</footer>
<!-- JavaScript at the bottom for fast page loading -->
<script src="js/markdown.js"></script>
<script>
function Editor(input, preview) {
this.update = function () {
preview.innerHTML = markdown.toHTML(input.value);
};
input.editor = this;
this.update();
}
var $ = function (id) {
return document.getElementById(id);
};
new Editor($("text-input"), $("preview"));
</script>
</body>
</html>