Adding link back and social detail

This commit is contained in:
Kevin Chung
2017-04-28 02:36:16 -04:00
parent c493329bf8
commit cf3e5cbbbd
5 changed files with 30 additions and 3 deletions

View File

@@ -479,3 +479,11 @@ table{
.remove-key{
float:right;
}
.footer {
position: absolute;
left: 0;
padding: 0;
margin: 0;
width: 100%;
}

View File

@@ -368,4 +368,12 @@ table{
margin: 0px;
}
.footer {
position: absolute;
left: 0;
padding: 0;
margin: 0;
width: 100%;
}
/* END OF INPUT CSS */

View File

@@ -67,7 +67,11 @@
</div>
<div class="container">
{% block content %} {% endblock %}
{% block content %}
{% endblock %}
<div class="navbar navbar-bottom footer">
<p class="text-muted text-center"><a style="text-decoration:none;" href="https://ctfd.io"><sub>Powered by CTFd</sub></p>
</div>
</div>
</div>
<script src="{{ request.script_root }}/static/admin/js/vendor/jquery.min.js"></script>

View File

@@ -65,6 +65,9 @@
{% block content %}
{% endblock %}
<div class="navbar navbar-bottom footer">
<p class="text-muted text-center"><a style="text-decoration:none;" href="https://ctfd.io"><sub>Powered by CTFd</sub></p>
</div>
</div>
<script src="{{ request.script_root }}/static/{{ ctf_theme() }}/js/vendor/jquery.min.js"></script>
<script src="{{ request.script_root }}/static/{{ ctf_theme() }}/js/vendor/marked.min.js"></script>

View File

@@ -47,9 +47,13 @@ def setup():
page = Pages('index', """<div class="container main-container">
<img class="logo" src="{0}/static/original/img/logo.png" />
<h3 class="text-center">
Welcome to a cool CTF framework written by <a href="https://github.com/ColdHeat">Kevin Chung</a> of <a href="https://github.com/isislab">@isislab</a>
<p>A cool CTF platform from <a href="https://ctfd.io">ctfd.io</a></p>
<p>Follow us on social media:</p>
<a href="https://twitter.com/ctfdio"><i class="fa fa-twitter fa-2x" aria-hidden="true"></i></a>&nbsp;
<a href="https://facebook.com/ctfdio"><i class="fa fa-facebook-official fa-2x" aria-hidden="true"></i></a>&nbsp;
<a href="https://github.com/ctfd"><i class="fa fa-github fa-2x" aria-hidden="true"></i></a>
</h3>
<br>
<h4 class="text-center">
<a href="{0}/admin">Click here</a> to login and setup your CTF
</h4>