server/src/resources/views/app.blade.php
author ymh <ymh.work@gmail.com>
Mon, 14 Nov 2016 16:27:55 +0100
changeset 419 a37e8629a95c
parent 386 c731ab9b934d
permissions -rw-r--r--
Added tag 0.0.11 for changeset 6eb84397be15
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
386
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
     1
@extends('base')
1
01a844d292ac dev environment + first skeleton for bo
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
386
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
     3
@section('nav')
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
     4
<ul class="nav navbar-nav">
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
     5
    <li><a href="{{ url('/bo/docs/') }}">Accueil B.O.</a></li>
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
     6
</ul>
1
01a844d292ac dev environment + first skeleton for bo
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
386
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
     8
<ul class="nav navbar-nav navbar-right">
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
     9
    @if (Auth::guest())
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    10
        <li><a href="{{ url('/auth/login') }}">Connexion</a></li>
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    11
    @else
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    12
        <li class="dropdown">
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    13
            <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">{{ Auth::user()->name }} <span class="caret"></span></a>
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    14
            <ul class="dropdown-menu" role="menu">
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    15
                <li><a href="{{ url('/auth/logout') }}">Déconnexion</a></li>
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    16
            </ul>
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    17
        </li>
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    18
    @endif
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    19
</ul>
1
01a844d292ac dev environment + first skeleton for bo
ymh <ymh.work@gmail.com>
parents:
diff changeset
    20
386
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents: 28
diff changeset
    21
@endsection