start_bootstrap_admin_theme 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +39 -0
  4. data/Rakefile +32 -0
  5. data/app/assets/config/start_bootstrap_admin_theme_manifest.js +1 -0
  6. data/app/assets/stylesheets/start_bootstrap_admin_theme/application.css +15 -0
  7. data/app/controllers/start_bootstrap_admin_theme/application_controller.rb +5 -0
  8. data/app/controllers/start_bootstrap_admin_theme/pages_controller.rb +7 -0
  9. data/app/helpers/start_bootstrap_admin_theme/application_helper.rb +4 -0
  10. data/app/jobs/start_bootstrap_admin_theme/application_job.rb +4 -0
  11. data/app/mailers/start_bootstrap_admin_theme/application_mailer.rb +6 -0
  12. data/app/models/start_bootstrap_admin_theme/application_record.rb +5 -0
  13. data/app/views/layouts/start_bootstrap_admin_theme/application.html.erb +15 -0
  14. data/app/views/start_bootstrap_admin_theme/pages/404.html +400 -0
  15. data/app/views/start_bootstrap_admin_theme/pages/blank.html +395 -0
  16. data/app/views/start_bootstrap_admin_theme/pages/buttons.html +560 -0
  17. data/app/views/start_bootstrap_admin_theme/pages/cards.html +547 -0
  18. data/app/views/start_bootstrap_admin_theme/pages/charts.html +458 -0
  19. data/app/views/start_bootstrap_admin_theme/pages/forgot-password.html +82 -0
  20. data/app/views/start_bootstrap_admin_theme/pages/index.html +677 -0
  21. data/app/views/start_bootstrap_admin_theme/pages/login.html +97 -0
  22. data/app/views/start_bootstrap_admin_theme/pages/register.html +95 -0
  23. data/app/views/start_bootstrap_admin_theme/pages/tables.html +897 -0
  24. data/app/views/start_bootstrap_admin_theme/pages/utilities-animation.html +480 -0
  25. data/app/views/start_bootstrap_admin_theme/pages/utilities-border.html +471 -0
  26. data/app/views/start_bootstrap_admin_theme/pages/utilities-color.html +476 -0
  27. data/app/views/start_bootstrap_admin_theme/pages/utilities-other.html +469 -0
  28. data/config/routes.rb +3 -0
  29. data/lib/start_bootstrap_admin_theme/engine.rb +5 -0
  30. data/lib/start_bootstrap_admin_theme/version.rb +3 -0
  31. data/lib/start_bootstrap_admin_theme.rb +5 -0
  32. data/lib/tasks/start_bootstrap_admin_theme_tasks.rake +4 -0
  33. metadata +121 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c6d357b76cf5ee9f4d009ada68ea3a7d842569c96f55d0f4fd087a9dbb3fb51f
4
+ data.tar.gz: f630d620450c8562465d19d0f806ecf844f17281a4bcd652aeb0cb056c763ac1
5
+ SHA512:
6
+ metadata.gz: e1d8af0fb1a2fc4580a7ce555dfedc6b1ba011ad9d24002c29196b8ed18d3fbdb664e2882574be52d31bc01af0f0615012e992e10088d279cbd317e740a0ab81
7
+ data.tar.gz: 53a6d0a99c09a55316efd4aacd75297c354784958f8abd88310890a144507789e3c93f96214c634e55390e639a4615d214e138f80601f777ee4f35f4ea9179f4
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2020 SnackNation
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # Start Bootstrap Admin Theme
2
+
3
+ Rails engine for [Start Bootstrap Admin Theme](https://startbootstrap.com/themes/sb-admin-2/).
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'start_bootstrap_admin_theme'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+
21
+ ```bash
22
+ $ gem install start_bootstrap_admin_theme
23
+ ```
24
+
25
+ ## Development
26
+
27
+ See https://github.com/SnackNation/start_bootstrap_admin_theme/blob/master/script/install/USAGE.md for how to import updates to the Start Bootstrap Admin Theme into this repo.
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/SnackNation/start_bootstrap_admin_theme. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
32
+
33
+ ## License
34
+
35
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
36
+
37
+ ## Code of Conduct
38
+
39
+ Everyone interacting in the Kiba::Uncommon project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/SnackNation/start_bootstrap_admin_theme/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,32 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'StartBootstrapAdminTheme'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.md')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+ load 'rails/tasks/statistics.rake'
21
+
22
+ require 'bundler/gem_tasks'
23
+
24
+ require 'rake/testtask'
25
+
26
+ Rake::TestTask.new(:test) do |t|
27
+ t.libs << 'test'
28
+ t.pattern = 'test/**/*_test.rb'
29
+ t.verbose = false
30
+ end
31
+
32
+ task default: :test
@@ -0,0 +1 @@
1
+ //= link_directory ../stylesheets/start_bootstrap_admin_theme .css
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,5 @@
1
+ module StartBootstrapAdminTheme
2
+ class ApplicationController < ActionController::Base
3
+ protect_from_forgery with: :exception
4
+ end
5
+ end
@@ -0,0 +1,7 @@
1
+ module StartBootstrapAdminTheme
2
+ class PagesController < ApplicationController
3
+ def show
4
+ render params[:id], layout: false
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ module StartBootstrapAdminTheme
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module StartBootstrapAdminTheme
2
+ class ApplicationJob < ActiveJob::Base
3
+ end
4
+ end
@@ -0,0 +1,6 @@
1
+ module StartBootstrapAdminTheme
2
+ class ApplicationMailer < ActionMailer::Base
3
+ default from: 'from@example.com'
4
+ layout 'mailer'
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ module StartBootstrapAdminTheme
2
+ class ApplicationRecord < ActiveRecord::Base
3
+ self.abstract_class = true
4
+ end
5
+ end
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Start bootstrap admin theme</title>
5
+ <%= csrf_meta_tags %>
6
+ <%= csp_meta_tag %>
7
+
8
+ <%= stylesheet_link_tag "start_bootstrap_admin_theme/application", media: "all" %>
9
+ </head>
10
+ <body>
11
+
12
+ <%= yield %>
13
+
14
+ </body>
15
+ </html>
@@ -0,0 +1,400 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+
6
+ <meta charset="utf-8">
7
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
8
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
9
+ <meta name="description" content="">
10
+ <meta name="author" content="">
11
+
12
+ <title>SB Admin 2 - 404</title>
13
+
14
+ <!-- Custom fonts for this template-->
15
+ <link href="/assets/start_bootstrap_admin_theme/vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
16
+ <link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
17
+
18
+ <!-- Custom styles for this template-->
19
+ <link href="/assets/start_bootstrap_admin_theme/css/sb-admin-2.min.css" rel="stylesheet">
20
+
21
+ </head>
22
+
23
+ <body id="page-top">
24
+
25
+ <!-- Page Wrapper -->
26
+ <div id="wrapper">
27
+
28
+ <!-- Sidebar -->
29
+ <ul class="navbar-nav bg-gradient-primary sidebar sidebar-dark accordion" id="accordionSidebar">
30
+
31
+ <!-- Sidebar - Brand -->
32
+ <a class="sidebar-brand d-flex align-items-center justify-content-center" href="index.html">
33
+ <div class="sidebar-brand-icon rotate-n-15">
34
+ <i class="fas fa-laugh-wink"></i>
35
+ </div>
36
+ <div class="sidebar-brand-text mx-3">SB Admin <sup>2</sup></div>
37
+ </a>
38
+
39
+ <!-- Divider -->
40
+ <hr class="sidebar-divider my-0">
41
+
42
+ <!-- Nav Item - Dashboard -->
43
+ <li class="nav-item">
44
+ <a class="nav-link" href="index.html">
45
+ <i class="fas fa-fw fa-tachometer-alt"></i>
46
+ <span>Dashboard</span></a>
47
+ </li>
48
+
49
+ <!-- Divider -->
50
+ <hr class="sidebar-divider">
51
+
52
+ <!-- Heading -->
53
+ <div class="sidebar-heading">
54
+ Interface
55
+ </div>
56
+
57
+ <!-- Nav Item - Pages Collapse Menu -->
58
+ <li class="nav-item">
59
+ <a class="nav-link collapsed" href="#" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="true" aria-controls="collapseTwo">
60
+ <i class="fas fa-fw fa-cog"></i>
61
+ <span>Components</span>
62
+ </a>
63
+ <div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionSidebar">
64
+ <div class="bg-white py-2 collapse-inner rounded">
65
+ <h6 class="collapse-header">Custom Components:</h6>
66
+ <a class="collapse-item" href="buttons.html">Buttons</a>
67
+ <a class="collapse-item" href="cards.html">Cards</a>
68
+ </div>
69
+ </div>
70
+ </li>
71
+
72
+ <!-- Nav Item - Utilities Collapse Menu -->
73
+ <li class="nav-item">
74
+ <a class="nav-link collapsed" href="#" data-toggle="collapse" data-target="#collapseUtilities" aria-expanded="true" aria-controls="collapseUtilities">
75
+ <i class="fas fa-fw fa-wrench"></i>
76
+ <span>Utilities</span>
77
+ </a>
78
+ <div id="collapseUtilities" class="collapse" aria-labelledby="headingUtilities" data-parent="#accordionSidebar">
79
+ <div class="bg-white py-2 collapse-inner rounded">
80
+ <h6 class="collapse-header">Custom Utilities:</h6>
81
+ <a class="collapse-item" href="utilities-color.html">Colors</a>
82
+ <a class="collapse-item" href="utilities-border.html">Borders</a>
83
+ <a class="collapse-item" href="utilities-animation.html">Animations</a>
84
+ <a class="collapse-item" href="utilities-other.html">Other</a>
85
+ </div>
86
+ </div>
87
+ </li>
88
+
89
+ <!-- Divider -->
90
+ <hr class="sidebar-divider">
91
+
92
+ <!-- Heading -->
93
+ <div class="sidebar-heading">
94
+ Addons
95
+ </div>
96
+
97
+ <!-- Nav Item - Pages Collapse Menu -->
98
+ <li class="nav-item active">
99
+ <a class="nav-link" href="#" data-toggle="collapse" data-target="#collapsePages" aria-expanded="true" aria-controls="collapsePages">
100
+ <i class="fas fa-fw fa-folder"></i>
101
+ <span>Pages</span>
102
+ </a>
103
+ <div id="collapsePages" class="collapse show" aria-labelledby="headingPages" data-parent="#accordionSidebar">
104
+ <div class="bg-white py-2 collapse-inner rounded">
105
+ <h6 class="collapse-header">Login Screens:</h6>
106
+ <a class="collapse-item" href="login.html">Login</a>
107
+ <a class="collapse-item" href="register.html">Register</a>
108
+ <a class="collapse-item" href="forgot-password.html">Forgot Password</a>
109
+ <div class="collapse-divider"></div>
110
+ <h6 class="collapse-header">Other Pages:</h6>
111
+ <a class="collapse-item active" href="404.html">404 Page</a>
112
+ <a class="collapse-item" href="blank.html">Blank Page</a>
113
+ </div>
114
+ </div>
115
+ </li>
116
+
117
+ <!-- Nav Item - Charts -->
118
+ <li class="nav-item">
119
+ <a class="nav-link" href="charts.html">
120
+ <i class="fas fa-fw fa-chart-area"></i>
121
+ <span>Charts</span></a>
122
+ </li>
123
+
124
+ <!-- Nav Item - Tables -->
125
+ <li class="nav-item">
126
+ <a class="nav-link" href="tables.html">
127
+ <i class="fas fa-fw fa-table"></i>
128
+ <span>Tables</span></a>
129
+ </li>
130
+
131
+ <!-- Divider -->
132
+ <hr class="sidebar-divider d-none d-md-block">
133
+
134
+ <!-- Sidebar Toggler (Sidebar) -->
135
+ <div class="text-center d-none d-md-inline">
136
+ <button class="rounded-circle border-0" id="sidebarToggle"></button>
137
+ </div>
138
+
139
+ </ul>
140
+ <!-- End of Sidebar -->
141
+
142
+ <!-- Content Wrapper -->
143
+ <div id="content-wrapper" class="d-flex flex-column">
144
+
145
+ <!-- Main Content -->
146
+ <div id="content">
147
+
148
+ <!-- Topbar -->
149
+ <nav class="navbar navbar-expand navbar-light bg-white topbar mb-4 static-top shadow">
150
+
151
+ <!-- Sidebar Toggle (Topbar) -->
152
+ <button id="sidebarToggleTop" class="btn btn-link d-md-none rounded-circle mr-3">
153
+ <i class="fa fa-bars"></i>
154
+ </button>
155
+
156
+ <!-- Topbar Search -->
157
+ <form class="d-none d-sm-inline-block form-inline mr-auto ml-md-3 my-2 my-md-0 mw-100 navbar-search">
158
+ <div class="input-group">
159
+ <input type="text" class="form-control bg-light border-0 small" placeholder="Search for..." aria-label="Search" aria-describedby="basic-addon2">
160
+ <div class="input-group-append">
161
+ <button class="btn btn-primary" type="button">
162
+ <i class="fas fa-search fa-sm"></i>
163
+ </button>
164
+ </div>
165
+ </div>
166
+ </form>
167
+
168
+ <!-- Topbar Navbar -->
169
+ <ul class="navbar-nav ml-auto">
170
+
171
+ <!-- Nav Item - Search Dropdown (Visible Only XS) -->
172
+ <li class="nav-item dropdown no-arrow d-sm-none">
173
+ <a class="nav-link dropdown-toggle" href="#" id="searchDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
174
+ <i class="fas fa-search fa-fw"></i>
175
+ </a>
176
+ <!-- Dropdown - Messages -->
177
+ <div class="dropdown-menu dropdown-menu-right p-3 shadow animated--grow-in" aria-labelledby="searchDropdown">
178
+ <form class="form-inline mr-auto w-100 navbar-search">
179
+ <div class="input-group">
180
+ <input type="text" class="form-control bg-light border-0 small" placeholder="Search for..." aria-label="Search" aria-describedby="basic-addon2">
181
+ <div class="input-group-append">
182
+ <button class="btn btn-primary" type="button">
183
+ <i class="fas fa-search fa-sm"></i>
184
+ </button>
185
+ </div>
186
+ </div>
187
+ </form>
188
+ </div>
189
+ </li>
190
+
191
+ <!-- Nav Item - Alerts -->
192
+ <li class="nav-item dropdown no-arrow mx-1">
193
+ <a class="nav-link dropdown-toggle" href="#" id="alertsDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
194
+ <i class="fas fa-bell fa-fw"></i>
195
+ <!-- Counter - Alerts -->
196
+ <span class="badge badge-danger badge-counter">3+</span>
197
+ </a>
198
+ <!-- Dropdown - Alerts -->
199
+ <div class="dropdown-list dropdown-menu dropdown-menu-right shadow animated--grow-in" aria-labelledby="alertsDropdown">
200
+ <h6 class="dropdown-header">
201
+ Alerts Center
202
+ </h6>
203
+ <a class="dropdown-item d-flex align-items-center" href="#">
204
+ <div class="mr-3">
205
+ <div class="icon-circle bg-primary">
206
+ <i class="fas fa-file-alt text-white"></i>
207
+ </div>
208
+ </div>
209
+ <div>
210
+ <div class="small text-gray-500">December 12, 2019</div>
211
+ <span class="font-weight-bold">A new monthly report is ready to download!</span>
212
+ </div>
213
+ </a>
214
+ <a class="dropdown-item d-flex align-items-center" href="#">
215
+ <div class="mr-3">
216
+ <div class="icon-circle bg-success">
217
+ <i class="fas fa-donate text-white"></i>
218
+ </div>
219
+ </div>
220
+ <div>
221
+ <div class="small text-gray-500">December 7, 2019</div>
222
+ $290.29 has been deposited into your account!
223
+ </div>
224
+ </a>
225
+ <a class="dropdown-item d-flex align-items-center" href="#">
226
+ <div class="mr-3">
227
+ <div class="icon-circle bg-warning">
228
+ <i class="fas fa-exclamation-triangle text-white"></i>
229
+ </div>
230
+ </div>
231
+ <div>
232
+ <div class="small text-gray-500">December 2, 2019</div>
233
+ Spending Alert: We've noticed unusually high spending for your account.
234
+ </div>
235
+ </a>
236
+ <a class="dropdown-item text-center small text-gray-500" href="#">Show All Alerts</a>
237
+ </div>
238
+ </li>
239
+
240
+ <!-- Nav Item - Messages -->
241
+ <li class="nav-item dropdown no-arrow mx-1">
242
+ <a class="nav-link dropdown-toggle" href="#" id="messagesDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
243
+ <i class="fas fa-envelope fa-fw"></i>
244
+ <!-- Counter - Messages -->
245
+ <span class="badge badge-danger badge-counter">7</span>
246
+ </a>
247
+ <!-- Dropdown - Messages -->
248
+ <div class="dropdown-list dropdown-menu dropdown-menu-right shadow animated--grow-in" aria-labelledby="messagesDropdown">
249
+ <h6 class="dropdown-header">
250
+ Message Center
251
+ </h6>
252
+ <a class="dropdown-item d-flex align-items-center" href="#">
253
+ <div class="dropdown-list-image mr-3">
254
+ <img class="rounded-circle" src="https://source.unsplash.com/fn_BT9fwg_E/60x60" alt="">
255
+ <div class="status-indicator bg-success"></div>
256
+ </div>
257
+ <div class="font-weight-bold">
258
+ <div class="text-truncate">Hi there! I am wondering if you can help me with a problem I've been having.</div>
259
+ <div class="small text-gray-500">Emily Fowler · 58m</div>
260
+ </div>
261
+ </a>
262
+ <a class="dropdown-item d-flex align-items-center" href="#">
263
+ <div class="dropdown-list-image mr-3">
264
+ <img class="rounded-circle" src="https://source.unsplash.com/AU4VPcFN4LE/60x60" alt="">
265
+ <div class="status-indicator"></div>
266
+ </div>
267
+ <div>
268
+ <div class="text-truncate">I have the photos that you ordered last month, how would you like them sent to you?</div>
269
+ <div class="small text-gray-500">Jae Chun · 1d</div>
270
+ </div>
271
+ </a>
272
+ <a class="dropdown-item d-flex align-items-center" href="#">
273
+ <div class="dropdown-list-image mr-3">
274
+ <img class="rounded-circle" src="https://source.unsplash.com/CS2uCrpNzJY/60x60" alt="">
275
+ <div class="status-indicator bg-warning"></div>
276
+ </div>
277
+ <div>
278
+ <div class="text-truncate">Last month's report looks great, I am very happy with the progress so far, keep up the good work!</div>
279
+ <div class="small text-gray-500">Morgan Alvarez · 2d</div>
280
+ </div>
281
+ </a>
282
+ <a class="dropdown-item d-flex align-items-center" href="#">
283
+ <div class="dropdown-list-image mr-3">
284
+ <img class="rounded-circle" src="https://source.unsplash.com/Mv9hjnEUHR4/60x60" alt="">
285
+ <div class="status-indicator bg-success"></div>
286
+ </div>
287
+ <div>
288
+ <div class="text-truncate">Am I a good boy? The reason I ask is because someone told me that people say this to all dogs, even if they aren't good...</div>
289
+ <div class="small text-gray-500">Chicken the Dog · 2w</div>
290
+ </div>
291
+ </a>
292
+ <a class="dropdown-item text-center small text-gray-500" href="#">Read More Messages</a>
293
+ </div>
294
+ </li>
295
+
296
+ <div class="topbar-divider d-none d-sm-block"></div>
297
+
298
+ <!-- Nav Item - User Information -->
299
+ <li class="nav-item dropdown no-arrow">
300
+ <a class="nav-link dropdown-toggle" href="#" id="userDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
301
+ <span class="mr-2 d-none d-lg-inline text-gray-600 small">Valerie Luna</span>
302
+ <img class="img-profile rounded-circle" src="https://source.unsplash.com/QAB-WJcbgJk/60x60">
303
+ </a>
304
+ <!-- Dropdown - User Information -->
305
+ <div class="dropdown-menu dropdown-menu-right shadow animated--grow-in" aria-labelledby="userDropdown">
306
+ <a class="dropdown-item" href="#">
307
+ <i class="fas fa-user fa-sm fa-fw mr-2 text-gray-400"></i>
308
+ Profile
309
+ </a>
310
+ <a class="dropdown-item" href="#">
311
+ <i class="fas fa-cogs fa-sm fa-fw mr-2 text-gray-400"></i>
312
+ Settings
313
+ </a>
314
+ <a class="dropdown-item" href="#">
315
+ <i class="fas fa-list fa-sm fa-fw mr-2 text-gray-400"></i>
316
+ Activity Log
317
+ </a>
318
+ <div class="dropdown-divider"></div>
319
+ <a class="dropdown-item" href="#" data-toggle="modal" data-target="#logoutModal">
320
+ <i class="fas fa-sign-out-alt fa-sm fa-fw mr-2 text-gray-400"></i>
321
+ Logout
322
+ </a>
323
+ </div>
324
+ </li>
325
+
326
+ </ul>
327
+
328
+ </nav>
329
+ <!-- End of Topbar -->
330
+
331
+ <!-- Begin Page Content -->
332
+ <div class="container-fluid">
333
+
334
+ <!-- 404 Error Text -->
335
+ <div class="text-center">
336
+ <div class="error mx-auto" data-text="404">404</div>
337
+ <p class="lead text-gray-800 mb-5">Page Not Found</p>
338
+ <p class="text-gray-500 mb-0">It looks like you found a glitch in the matrix...</p>
339
+ <a href="index.html">&larr; Back to Dashboard</a>
340
+ </div>
341
+
342
+ </div>
343
+ <!-- /.container-fluid -->
344
+
345
+ </div>
346
+ <!-- End of Main Content -->
347
+
348
+ <!-- Footer -->
349
+ <footer class="sticky-footer bg-white">
350
+ <div class="container my-auto">
351
+ <div class="copyright text-center my-auto">
352
+ <span>Copyright &copy; Your Website 2019</span>
353
+ </div>
354
+ </div>
355
+ </footer>
356
+ <!-- End of Footer -->
357
+
358
+ </div>
359
+ <!-- End of Content Wrapper -->
360
+
361
+ </div>
362
+ <!-- End of Page Wrapper -->
363
+
364
+ <!-- Scroll to Top Button-->
365
+ <a class="scroll-to-top rounded" href="#page-top">
366
+ <i class="fas fa-angle-up"></i>
367
+ </a>
368
+
369
+ <!-- Logout Modal-->
370
+ <div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
371
+ <div class="modal-dialog" role="document">
372
+ <div class="modal-content">
373
+ <div class="modal-header">
374
+ <h5 class="modal-title" id="exampleModalLabel">Ready to Leave?</h5>
375
+ <button class="close" type="button" data-dismiss="modal" aria-label="Close">
376
+ <span aria-hidden="true">×</span>
377
+ </button>
378
+ </div>
379
+ <div class="modal-body">Select "Logout" below if you are ready to end your current session.</div>
380
+ <div class="modal-footer">
381
+ <button class="btn btn-secondary" type="button" data-dismiss="modal">Cancel</button>
382
+ <a class="btn btn-primary" href="login.html">Logout</a>
383
+ </div>
384
+ </div>
385
+ </div>
386
+ </div>
387
+
388
+ <!-- Bootstrap core JavaScript-->
389
+ <script src="/assets/start_bootstrap_admin_theme/vendor/jquery/jquery.min.js"></script>
390
+ <script src="/assets/start_bootstrap_admin_theme/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
391
+
392
+ <!-- Core plugin JavaScript-->
393
+ <script src="/assets/start_bootstrap_admin_theme/vendor/jquery-easing/jquery.easing.min.js"></script>
394
+
395
+ <!-- Custom scripts for all pages-->
396
+ <script src="/assets/start_bootstrap_admin_theme/js/sb-admin-2.min.js"></script>
397
+
398
+ </body>
399
+
400
+ </html>