Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Welcome to College Admin theme. It is theme engine for making rails. It renders an administrator theme in your project.
Please visit this site to see it's demo
Add this line to your application's Gemfile:
gem 'college_admin'
And then execute:
$ bundle
Or install it yourself as:
$ gem install college_admin
From your controller just call this theme engine as:
layout 'college_admin'
Open application.js
in app-> assets -> javascripts
folder.
Then, use require jquery2
instead of require jquery
and restart in your system
Step 1:
Make a file named _logo.html.erb
in your app->views->shared
folder.
Write down this code in your _logo.html.erb
:
<% content_for :logo do %>
<div class="logo">
<a href="#" class="logo"><span>C<i class="zmdi zmdi-album"></i>llege</span></a>
</div>
<% end %>
You can alter the logo name and path
Step 2:
Make file named _extends_admin_layout.html.erb
in your app->views->shared
folder.
Then, write down this code in your _extends_admin_layout.html.erb
<%= render partial: 'shared/logo' %>
Step 3:
Now, open in your all admin view files as example as index.html.erb
, edit.html.erb
, show.html.erb
and new.html.erb
, then write down
given bellow code:
<%= render 'shared/extends_admin_layout' %>
Step 1:
Make a file named _profile.html.erb
in your app->views->shared
folder.
Write down this code in your _profile.html.erb
:
<% content_for :profile do %>
<li class="dropdown">
<a href="" class="dropdown-toggle waves-effect waves-light profile" data-toggle="dropdown" aria-expanded="true">
<%= image_tag 'users/avatar-1.jpg', class: 'img-circle' %>
</a>
<ul class="dropdown-menu">
<li><a href="#"><i class="ti-user m-r-5"></i> Profile</a></li>
<li><a href="#"><i class="ti-settings m-r-5"></i> Settings</a></li>
<li><a href="#"><i class="ti-lock m-r-5"></i> Lock screen</a></li>
<li><a href="#"><i class="ti-power-off m-r-5"></i> Logout</a></li>
</ul>
</li>
<% end %>
Step 2:
Make file named _extends_admin_layout.html.erb
in your app->views->shared
folder.
Then, write down this code in your _extends_admin_layout.html.erb
<%= render partial: 'shared/profile' %>
Step 3:
Now, open in your all admin view files as example as index.html.erb
, edit.html.erb
, show.html.erb
and new.html.erb
, then write down
given bellow code:
<%= render 'shared/extends_admin_layout' %>
Step 1:
Make a file named _search.html.erb
in your app->views->shared
folder.
Write down this code in your _search.html.erb
:
<% content_for :search do %>
<li>
<form role="search" class="navbar-left app-search pull-left hidden-xs">
<input type="text" placeholder="Search..." class="form-control">
<a href=""><i class="fa fa-search"></i></a>
</form>
</li>
<% end %>
Step 2:
Make file named _extends_admin_layout.html.erb
in your app->views->shared
folder.
Then, write down this code in your _extends_admin_layout.html.erb
<%= render partial: 'shared/search' %>
Step 3:
Now, open in your all admin view files as example as index.html.erb
, edit.html.erb
, show.html.erb
and new.html.erb
, then write down
given bellow code:
<%= render 'shared/extends_admin_layout' %>
Step 1:
Make a file named _nav.html.erb
in your app->views->shared
folder.
Write down this code in your _nav.html.erb
:
<% content_for :nav do %>
<!--For a single menu content-->
<li class="has-submenu active">
<a href="#"><i class="zmdi zmdi-view-dashboard"></i>Dashboard</a>
</li>
<!--For a normal menu content-->
<li class="has-submenu">
<a href="#"><i class="zmdi zmdi-palette"></i>UI Kit</a>
<ul class="submenu">
<li><a href="#">Portlets</a></li>
<li><a href="#">Checkboxs-Radios</a></li>
<li><a href="#">Tabs</a></li>
<li><a href="#">Modals</a></li>
</ul>
</li>
<% end %>
Step 2:
Make file named _extends_admin_layout.html.erb
in your app->views->shared
folder.
Then, write down this code in your _extends_admin_layout.html.erb
<%= render partial: 'shared/nav' %>
Step 3:
Now, open in your all admin view files as example as index.html.erb
, edit.html.erb
, show.html.erb
and new.html.erb
, then write down
given bellow code:
<%= render 'shared/extends_admin_layout' %>
Step 1:
Make a file named _footer.html.erb
in your app->views->shared
folder.
Write down this code in your _footer.html.erb
:
<% content_for :footer do %>
<footer class="footer text-right">
<div class="container">
<div class="row">
<div class="col-xs-6">
<%= Time.now.year %> © Admin
</div>
</div>
</div>
</footer>
<% end %>
Step 2:
Make file named _extends_admin_layout.html.erb
in your app->views->shared
folder.
Then, write down this code in your _extends_admin_layout.html.erb
<%= render partial: 'shared/footer' %>
Step 3:
Now, open in your all admin view files as example as index.html.erb
, edit.html.erb
, show.html.erb
and new.html.erb
, then write down
given bellow code:
<%= render 'shared/extends_admin_layout' %>
Bug reports and pull requests are welcome on GitHub.This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that college_admin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.