Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion website/templates/hackathons/detail.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
{% extends "base.html" %}
{% load static %}
{% block title %}
{{ hackathon.name }} - Hackathon
{{ hackathon.name }} - Hackathon | OWASP BLT
{% endblock title %}
{% block description %}
{{ hackathon.name }} - {{ hackathon.description|truncatechars:150 }}
{% endblock description %}
{% block og_title %}
{{ hackathon.name }} - OWASP BLT
{% endblock og_title %}
{% block og_description %}
{{ hackathon.name }} - {{ hackathon.description|truncatechars:200 }}
{% endblock og_description %}
{% block og_image %}
{% if hackathon.banner_image %}
{{ request.scheme }}://{{ request.get_host }}{{ hackathon.banner_image.url }}
{% endif %}
{% endblock og_image %}
{% block content %}
{% include "includes/sidenav.html" %}
<div class="container mx-auto px-4 py-8">
Expand Down