Skip to content
Snippets Groups Projects
Commit 7ce3a8bd authored by Andreas Valder's avatar Andreas Valder
Browse files

added semantic web stuff to the player, closes #69, related to #12

parent 493516bc
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,8 @@
<!DOCTYPE html>
<html>
<head>
<title>Video AG</title>
{% block header %}
<title>Video AG {% block title %}{% endblock %}</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" type="image/png" href="{{url_for('static', filename='favicon.png')}}">
<meta http-equiv="content-language" content="de-DE">
......@@ -30,7 +31,7 @@
<script src="{{url_for('static', filename='videojs/videojs-resolution-switcher.js')}}"></script>
<script src="{{url_for('static', filename='videojs/videojs-contrib-hls.js')}}"></script>
<script src="{{url_for('static', filename='videojs/videojs.hotkeys.js')}}"></script>
{% endblock %}
</head>
<body>
{% block navbar %}
......
......@@ -8,6 +8,13 @@
{% set page_border = 0 -%}
{% extends "base.html" %}
{% block header %}
{{ super() }}
<meta property="og:image" content="{{ config.VIDEOPREFIX }}/{{ lecture['titlefile'] }}" />
<meta property="og:title" content="{{ course.title }}: {{ lecture.title}}" />
<meta property="og:description" content="{{ lecture.comment }}" />
{% endblock %}
{% block content %}
<div class="panel panel-default">
<div class="panel-heading">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment