-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.php
65 lines (57 loc) · 2.11 KB
/
menu.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!-- The application "window" -->
<div id="application">
<!-- Primary navigation -->
<nav id="primary">
<ul>
<li class="current">
<a href="index.php">
<span class="icon dashboard"></span>
<!--<span class="badge">4</span>-->
Ana Sayfa
</a>
</li>
<li class="current">
<a href="kasa.php">
<span class="icon odeme"></span>
Kasa</a>
</li>
<li class="current">
<a href="gunluk.php">
<span class="icon chart"></span>
Günlük</a>
</li>
<li class="current">
<a href="yoneticiler.php">
<span class="icon yonetim"></span>
Yöneticiler</a>
</li>
<li class="current">
<a href="personel.php">
<span class="icon personel"></span>
Personel</a>
</li>
<li class="current">
<a href="firma.php">
<span class="icon modal"></span>
Müşteriler</a>
</li>
<li class="current">
<a href="tedarikciler.php">
<span class="icon tables"></span>
Tedarikçiler
</a>
</li>
<li class="current">
<a href="faturalar.php">
<span class="icon fatura"></span>
Faturalar
</a>
</li>
<li class="current">
<a href="selametle.php">
<span class="icon anchor"></span>
Çıkış
</a>
</li>
</ul>
</nav>