Skip to content

Commit 907a1ef

Browse files
committed
Added Admin BSB template files, made it initially working.
1 parent 83c5478 commit 907a1ef

File tree

3,507 files changed

+471132
-42
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,507 files changed

+471132
-42
lines changed

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Views/Shared/_Layout.cshtml

Lines changed: 465 additions & 14 deletions
Large diffs are not rendered by default.

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Views/Users/Index.cshtml

Lines changed: 49 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,57 @@
1515
</environment>
1616
}
1717
<div>
18-
<h1>@L("Users")</h1>
19-
<div class="row">
20-
<div class="col-md-12">
21-
<button data-toggle="modal" data-target="#UserCreateModal" class="btn btn-primary pull-right"><i class="fa fa-plus"></i> @L("CreateNewUser")</button>
22-
<table class="table">
23-
<thead>
24-
<tr>
25-
<th>@L("UserName")</th>
26-
<th>@L("FullName")</th>
27-
<th>@L("EmailAddress")</th>
28-
<th>@L("IsActive")</th>
29-
</tr>
30-
</thead>
31-
<tbody>
32-
@foreach (var user in Model.Items)
33-
{
18+
<div class="block-header">
19+
20+
</div>
21+
22+
<div class="row clearfix">
23+
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
24+
<div class="card">
25+
<div class="header">
26+
<h2>
27+
@L("Users")
28+
</h2>
29+
<ul class="header-dropdown m-r--5">
30+
<li class="dropdown">
31+
<a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
32+
<i class="material-icons">more_vert</i>
33+
</a>
34+
<ul class="dropdown-menu pull-right">
35+
<li><a href="javascript:void(0);" class=" waves-effect waves-block">Action</a></li>
36+
<li><a href="javascript:void(0);" class=" waves-effect waves-block">Another action</a></li>
37+
<li><a href="javascript:void(0);" class=" waves-effect waves-block">Something else here</a></li>
38+
</ul>
39+
</li>
40+
</ul>
41+
</div>
42+
<div class="body table-responsive">
43+
<table class="table">
44+
<thead>
3445
<tr>
35-
<td>@user.UserName</td>
36-
<td>@user.FullName</td>
37-
<td>@user.EmailAddress</td>
38-
<td>@L(user.IsActive ? "Yes" : "No")</td>
46+
<th>@L("UserName")</th>
47+
<th>@L("FullName")</th>
48+
<th>@L("EmailAddress")</th>
49+
<th>@L("IsActive")</th>
3950
</tr>
40-
}
41-
</tbody>
42-
</table>
51+
</thead>
52+
<tbody>
53+
@foreach (var user in Model.Items)
54+
{
55+
<tr>
56+
<td>@user.UserName</td>
57+
<td>@user.FullName</td>
58+
<td>@user.EmailAddress</td>
59+
<td>@L(user.IsActive ? "Yes" : "No")</td>
60+
</tr>
61+
}
62+
</tbody>
63+
</table>
64+
<button type="button" class="btn btn-primary btn-circle waves-effect waves-circle waves-float pull-right" data-toggle="modal" data-target="#UserCreateModal">
65+
<i class="material-icons">add</i>
66+
</button>
67+
</div>
68+
</div>
4369
</div>
4470
</div>
4571
</div>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
The MIT License (MIT)
2+
Copyright (c) 2016 Güray Yarar
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
6+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7+
8+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
AdminBSB - Material Design
2+
=======================
3+
[![npm version](https://img.shields.io/npm/v/adminbsb-materialdesign.svg)](https://www.npmjs.com/package/adminbsb-materialdesign)
4+
![Bower version](https://img.shields.io/bower/v/adminbsb-materialdesign.svg)
5+
6+
**AdminBSB - Material Design is a fully responsive and free admin template.** It was developed with [Bootstrap 3.x Framework](http://getbootstrap.com) and [Google Material Design](https://material.google.com) of powers.
7+
8+
It's really easy to customize and usage. You can use for from 320px to large resolution pixels of new generation screens and mobile devices. (**Fully Responsive Material Design**)
9+
10+
Looking for Premium Templates or Make Donation?
11+
----------------
12+
**If you need more features or if you want to make donation with buying template, please visit portfolio of mine which page link is [https://themeforest.net/user/gurayyarar/portfolio](http://bit.ly/2oPFpmQ)**
13+
14+
Demo
15+
----------------
16+
You can check the website preview with **[this link](https://gurayyarar.github.io/AdminBSBMaterialDesign/)**
17+
18+
![AdminBSB - Free Admin Template With Material Design](https://raw.githubusercontent.com/gurayyarar/AdminBSBMaterialDesign/master/images/screenshot.png)
19+
20+
Installation
21+
----------------
22+
You can choose one from multiple ways for installation.
23+
24+
**GitHub**
25+
- Fork the repository ([here is the guide](https://help.github.com/articles/fork-a-repo/)).
26+
- Clone to your machine
27+
```
28+
git clone https://github.com/YOUR_USERNAME/AdminBSBMaterialDesign.git
29+
```
30+
31+
**npm**
32+
```
33+
npm install adminbsb-materialdesign
34+
```
35+
36+
**bower**
37+
```
38+
bower install adminbsb-materialdesign
39+
```
40+
41+
Documentation
42+
----------
43+
Visit the **[documentation](https://gurayyarar.github.io/AdminBSBMaterialDesign/documentation/)**
44+
45+
Browser Support
46+
----------
47+
- IE 10 +
48+
- Microsoft Edge (Latest)
49+
- Mozilla Firefox (Latest)
50+
- Google Chrome (Latest)
51+
- Opera (Latest)
52+
- Safari (Latest)
53+
54+
Change Logs
55+
----------
56+
You can display all release notes with **[this link](https://gurayyarar.github.io/AdminBSBMaterialDesign/pages/changelogs.html)**
57+
58+
59+
FAQ
60+
===
61+
**Can I use this template for personal or commercial websites/web projects?**
62+
Sure, you can use both of personal and commercial websites/web projects.
63+
64+
**Is the attribution link required?**
65+
No, not required. (Though very much appreciated)
66+
67+
License
68+
----------
69+
**AdminBSB - Material Design** is an open source project that is licensed under the [MIT license](http://opensource.org/licenses/MIT).
70+
71+
Donations
72+
----------
73+
Donations are **greatly appreciated!**
74+
75+
**[DONATE WITH BUY PREMIUM TEMPLATE](http://bit.ly/2oPFpmQ)**
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "adminbsb-materialdesign",
3+
"version": "1.0.4",
4+
"description": "AdminBSB - Free admin panel that is based on Bootstrap 3.x with Material Design",
5+
"main": "js/admin.js",
6+
"authors": [
7+
"Güray Yarar"
8+
],
9+
"license": "MIT",
10+
"homepage": "https://github.com/gurayyarar/AdminBSBMaterialDesign",
11+
"moduleType": [],
12+
"ignore": [
13+
"**/.*",
14+
"node_modules",
15+
"bower_components",
16+
"test",
17+
"tests"
18+
]
19+
}
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
[
2+
{
3+
"outputFile": "css/themes/all-themes.css",
4+
"inputFile": "scss/themes/_all-themes.scss"
5+
},
6+
{
7+
"outputFile": "css/themes/theme-red.css",
8+
"inputFile": "scss/themes/theme-red.scss"
9+
},
10+
{
11+
"outputFile": "css/themes/theme-amber.css",
12+
"inputFile": "scss/themes/theme-amber.scss"
13+
},
14+
{
15+
"outputFile": "css/themes/theme-black.css",
16+
"inputFile": "scss/themes/theme-black.scss"
17+
},
18+
{
19+
"outputFile": "css/themes/theme-blue-grey.css",
20+
"inputFile": "scss/themes/theme-blue-grey.scss"
21+
},
22+
{
23+
"outputFile": "css/themes/theme-blue.css",
24+
"inputFile": "scss/themes/theme-blue.scss"
25+
},
26+
{
27+
"outputFile": "css/themes/theme-brown.css",
28+
"inputFile": "scss/themes/theme-brown.scss"
29+
},
30+
{
31+
"outputFile": "css/themes/theme-cyan.css",
32+
"inputFile": "scss/themes/theme-cyan.scss"
33+
},
34+
{
35+
"outputFile": "css/themes/theme-deep-orange.css",
36+
"inputFile": "scss/themes/theme-deep-orange.scss"
37+
},
38+
{
39+
"outputFile": "css/themes/theme-deep-purple.css",
40+
"inputFile": "scss/themes/theme-deep-purple.scss"
41+
},
42+
{
43+
"outputFile": "css/themes/theme-green.css",
44+
"inputFile": "scss/themes/theme-green.scss"
45+
},
46+
{
47+
"outputFile": "css/themes/theme-grey.css",
48+
"inputFile": "scss/themes/theme-grey.scss"
49+
},
50+
{
51+
"outputFile": "css/themes/theme-indigo.css",
52+
"inputFile": "scss/themes/theme-indigo.scss"
53+
},
54+
{
55+
"outputFile": "css/themes/theme-light-blue.css",
56+
"inputFile": "scss/themes/theme-light-blue.scss"
57+
},
58+
{
59+
"outputFile": "css/themes/theme-lime.css",
60+
"inputFile": "scss/themes/theme-lime.scss"
61+
},
62+
{
63+
"outputFile": "css/themes/theme-orange.css",
64+
"inputFile": "scss/themes/theme-orange.scss"
65+
},
66+
{
67+
"outputFile": "css/themes/theme-pink.css",
68+
"inputFile": "scss/themes/theme-pink.scss"
69+
},
70+
{
71+
"outputFile": "css/themes/theme-purple.css",
72+
"inputFile": "scss/themes/theme-purple.scss"
73+
},
74+
{
75+
"outputFile": "css/themes/theme-teal.css",
76+
"inputFile": "scss/themes/theme-teal.scss"
77+
},
78+
{
79+
"outputFile": "css/themes/theme-yellow.css",
80+
"inputFile": "scss/themes/theme-yellow.scss"
81+
},
82+
{
83+
"outputFile": "css/style.css",
84+
"inputFile": "scss/style.scss"
85+
}
86+
]
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"compilers": {
3+
"less": {
4+
"autoPrefix": "",
5+
"cssComb": "none",
6+
"ieCompat": true,
7+
"strictMath": false,
8+
"strictUnits": false,
9+
"relativeUrls": true,
10+
"rootPath": "",
11+
"sourceMapRoot": "",
12+
"sourceMapBasePath": "",
13+
"sourceMap": false
14+
},
15+
"sass": {
16+
"includePath": "",
17+
"indentType": "space",
18+
"indentWidth": 2,
19+
"outputStyle": "nested",
20+
"Precision": 5,
21+
"relativeUrls": true,
22+
"sourceMapRoot": "",
23+
"sourceMap": false
24+
},
25+
"stylus": {
26+
"sourceMap": false
27+
},
28+
"babel": {
29+
"sourceMap": false
30+
},
31+
"coffeescript": {
32+
"bare": false,
33+
"runtimeMode": "node",
34+
"sourceMap": false
35+
}
36+
},
37+
"minifiers": {
38+
"css": {
39+
"enabled": true,
40+
"termSemicolons": true,
41+
"gzip": false
42+
},
43+
"javascript": {
44+
"enabled": true,
45+
"termSemicolons": true,
46+
"gzip": false
47+
}
48+
}
49+
}

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/wwwroot/css/main.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
body {
2-
padding-top: 80px;
3-
}
4-
.famfamfam-flags {
1+
.famfamfam-flags {
52
display: inline-block;
63
}
74
.content.tenant-change-box {

0 commit comments

Comments
 (0)