-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathinterface.html
More file actions
42 lines (40 loc) · 1.79 KB
/
Copy pathinterface.html
File metadata and controls
42 lines (40 loc) · 1.79 KB
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
<div class="widget-holder">
<form class="form form-horizontal">
<header>
<p>
Configure the menu settings
<a href="https://help.fliplet.com/menus/" class="help-icon" target="_blank">
<i class="fa fa-question-circle-o"></i>
</a>
</p>
</header>
<div class="form-group clearfix">
<div class="col-sm-4 control-label">
<label>Select the navigation style</label>
</div>
<div class="col-sm-8">
<div class="radio radio-icon">
<input type="radio" id="bar-menu" name="menu-style" value="bar-menu">
<label for="bar-menu">
<span class="check"><i class="fa fa-circle"></i></span> <strong>Navigation bar</strong> - With a menu bar and an overlay with the screens list. With swipe gestures.
<img class="img-responsive" src="{{ asset 'img/navigation-style-1.png'}}">
</label>
</div>
<div class="radio radio-icon">
<input type="radio" id="controls-menu" name="menu-style" value="controls-menu">
<label for="controls-menu">
<span class="check"><i class="fa fa-circle"></i></span> <strong>Minimal navigation</strong> - With a minimalist navigation bar and swipe gestures.
<img class="img-responsive" src="{{ asset 'img/navigation-style-2.png'}}">
</label>
</div>
<div class="radio radio-icon">
<input type="radio" id="no-controls-menu" name="menu-style" value="no-controls-menu">
<label for="no-controls-menu">
<span class="check"><i class="fa fa-circle"></i></span> <strong>No navigation bar</strong> - With swipe gestures.
<img class="img-responsive" src="{{ asset 'img/navigation-style-3.png'}}">
</label>
</div>
</div>
</div>
</form>
</div>