mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-17 19:20:56 +01:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{% extends 'layout.twig' %}
|
||||
{% block title %}Gitlist{% endblock %}
|
||||
{% block title %}GitList{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% include 'navigation.twig' %}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% extends 'layout.twig' %}
|
||||
{% block title %}Gitlist{% endblock %}
|
||||
{% block title %}GitList{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% include 'navigation.twig' %}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% extends 'layout.twig' %}
|
||||
{% block title %}Gitlist{% endblock %}
|
||||
{% block title %}GitList{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% include 'navigation.twig' %}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% extends 'layout.twig' %}
|
||||
{% block title %}Gitlist{% endblock %}
|
||||
{% block title %}GitList{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% include 'navigation.twig' %}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% extends 'layout.twig' %}
|
||||
{% block title %}Gitlist{% endblock %}
|
||||
{% block title %}GitList{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% include 'navigation.twig' %}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</a>
|
||||
<a class="brand" href="{{ baseurl }}">Gitlist</a>
|
||||
<a class="brand" href="{{ baseurl }}">GitList</a>
|
||||
<div class="nav-collapse">
|
||||
<ul class="nav pull-right">
|
||||
<li><a href="https://github.com/klaussilveira/gitlist/">About</a></li>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<rss version="2.0">
|
||||
<channel>
|
||||
<title>Latest commits in {{ repo }}:{{ branch }}</title>
|
||||
<description>RSS provided by Gitlist</description>
|
||||
<description>RSS provided by GitList</description>
|
||||
<link>{{ baseurl }}/</link>
|
||||
|
||||
{% for commit in commits %}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% extends 'layout.twig' %}
|
||||
{% block title %}Gitlist{% endblock %}
|
||||
{% block title %}GitList{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% include 'navigation.twig' %}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% extends 'layout.twig' %}
|
||||
{% block title %}Gitlist{% endblock %}
|
||||
{% block title %}GitList{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% include 'navigation.twig' %}
|
||||
|
||||
@@ -1,12 +1,14 @@
|
||||
$(function () {
|
||||
$('.dropdown-toggle').dropdown();
|
||||
var mode = $('#sourcecode').attr('language');
|
||||
|
||||
CodeMirror.fromTextArea(document.getElementById("sourcecode"), {
|
||||
lineNumbers: true,
|
||||
matchBrackets: true,
|
||||
lineWrapping: true,
|
||||
readOnly: true,
|
||||
mode: mode
|
||||
});
|
||||
});
|
||||
if ($('#sourcecode').length) {
|
||||
var mode = $('#sourcecode').attr('language');
|
||||
CodeMirror.fromTextArea(document.getElementById("sourcecode"), {
|
||||
lineNumbers: true,
|
||||
matchBrackets: true,
|
||||
lineWrapping: true,
|
||||
readOnly: true,
|
||||
mode: mode
|
||||
});
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user