kuppayam 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/layouts/kuppayam/docs.html.erb +93 -0
- data/lib/kuppayam/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e6d8c576d666102da95a6bd1dc4af373a5ec742
|
4
|
+
data.tar.gz: 653a6d5d45d08db84f9c40b63da4cec7871ac38f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a212d03a6e337fab7136bd27b61396db1fe2b8b55c08edef17b5ed1f40c1c9441b850c8b57ed2a75f786cf3edaeedd0b052a6ac23c35d73b049a86403d042745
|
7
|
+
data.tar.gz: 4fa435d7916d5fe33612a6e32d13f957b7b4a704a88406d8dcc75ad7701455f0f0051ff9d45e51a8295a737a9717952b812c4bcc9002d5f2c66a355647ca762b
|
@@ -0,0 +1,93 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<!-- Head -->
|
5
|
+
<%= render :partial=>"/layouts/kuppayam/head" -%>
|
6
|
+
</head>
|
7
|
+
|
8
|
+
<body class="page-body">
|
9
|
+
|
10
|
+
<!-- <div class="settings-pane" id="settings_pane">
|
11
|
+
<%#= render :partial=>"/layouts/kuppayam/settings_pane" -%>
|
12
|
+
</div> -->
|
13
|
+
|
14
|
+
<div class="page-container">
|
15
|
+
|
16
|
+
<div class="main-content">
|
17
|
+
|
18
|
+
<!-- Heading & Breadcrumbs -->
|
19
|
+
<%= render :partial=>"/layouts/kuppayam/heading" -%>
|
20
|
+
|
21
|
+
<%#* Show flash messages if controller has set any. -%>
|
22
|
+
<div id="div_flash_message" class="mt-10">
|
23
|
+
<%= flash_message(false) if defined?(flash) -%>
|
24
|
+
</div>
|
25
|
+
|
26
|
+
<%#* Page Content Starts here -%>
|
27
|
+
<div id="div_page_content_main">
|
28
|
+
<%= yield %>
|
29
|
+
</div>
|
30
|
+
|
31
|
+
<!-- Footer -->
|
32
|
+
<%= render :partial=>"/layouts/kuppayam/footer" -%>
|
33
|
+
|
34
|
+
</div>
|
35
|
+
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<div id="div_modal_generic" class="modal" style="z-index: 1056;">
|
39
|
+
<div class="modal-dialog">
|
40
|
+
<div class="modal-content">
|
41
|
+
<div class="modal-header">
|
42
|
+
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
43
|
+
<h3 class="modal-title">Modal title</h3>
|
44
|
+
</div>
|
45
|
+
<div class="modal-body-main"></div>
|
46
|
+
</div><!-- /.modal-content -->
|
47
|
+
</div><!-- /.modal-dialog -->
|
48
|
+
</div><!-- /.modal -->
|
49
|
+
|
50
|
+
<div id="div_modal_large" class="modal">
|
51
|
+
<div class="modal-dialog modal-lg" style="width: 96%">
|
52
|
+
<div class="modal-content">
|
53
|
+
<div class="modal-header">
|
54
|
+
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
55
|
+
<h3 class="modal-title">Modal title</h3>
|
56
|
+
</div>
|
57
|
+
<div class="modal-body-main"></div>
|
58
|
+
</div><!-- /.modal-content -->
|
59
|
+
</div><!-- /.modal-dialog -->
|
60
|
+
</div><!-- /.modal -->
|
61
|
+
|
62
|
+
<div id="div_modal_message" class="modal fade">
|
63
|
+
<div class="modal-dialog">
|
64
|
+
<div class="modal-content">
|
65
|
+
<div class="modal-header">
|
66
|
+
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
67
|
+
<h3 class="modal-title">Modal title</h3>
|
68
|
+
</div>
|
69
|
+
<div class="modal-body">
|
70
|
+
<p>One fine body…</p>
|
71
|
+
</div>
|
72
|
+
<div class="modal-footer">
|
73
|
+
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
|
74
|
+
</div>
|
75
|
+
</div><!-- /.modal-content -->
|
76
|
+
</div><!-- /.modal-dialog -->
|
77
|
+
</div><!-- /.modal -->
|
78
|
+
|
79
|
+
<script type="text/javascript">
|
80
|
+
$('.modal').on('shown.bs.modal', function(e){
|
81
|
+
$(this).modal('handleUpdate'); //Update backdrop on modal show
|
82
|
+
$(this).scrollTop(0); //reset modal to top position
|
83
|
+
});
|
84
|
+
</script>
|
85
|
+
|
86
|
+
<%#* Loading Javascripts -%>
|
87
|
+
<%= javascript_include_tag @javascript_filename -%>
|
88
|
+
|
89
|
+
<%= yield :javascript_footer -%>
|
90
|
+
|
91
|
+
</body>
|
92
|
+
|
93
|
+
</html>
|
data/lib/kuppayam/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kuppayam
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kpvarma
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-08-
|
11
|
+
date: 2017-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -473,6 +473,7 @@ files:
|
|
473
473
|
- app/views/layouts/kuppayam/_sidebar_old.html.erb
|
474
474
|
- app/views/layouts/kuppayam/admin.html.erb
|
475
475
|
- app/views/layouts/kuppayam/blank.html.erb
|
476
|
+
- app/views/layouts/kuppayam/docs.html.erb
|
476
477
|
- app/views/layouts/kuppayam/document_upload.html.erb
|
477
478
|
- app/views/layouts/kuppayam/image_upload.html.erb
|
478
479
|
- app/views/layouts/kuppayam/layout_horizontal_menu.html.erb
|