mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-18 03:30:55 +01:00
24 lines
581 B
Twig
24 lines
581 B
Twig
{% extends 'layout_page.twig' %}
|
|
|
|
{% set page = 'network' %}
|
|
|
|
{% block title %}GitList{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include 'breadcrumb.twig' with {breadcrumbs: [{dir: 'Network', path:''}]} %}
|
|
<div class="network-view">
|
|
<div class="network-header">
|
|
<div class="meta">Network Graph of {{ repo }} / {{ commitishPath }}</div>
|
|
</div>
|
|
|
|
<div class="network-graph" data-source="{{ path('networkData', {repo: repo, commitishPath: commitishPath}) }}">
|
|
{#<div class="network-graph" data-source="/dummynetwork.json">#}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<hr />
|
|
{% endblock %}
|