Skip to content

Commit

Permalink
Initialize template
Browse files Browse the repository at this point in the history
  • Loading branch information
ssojonn committed Jan 7, 2021
0 parents commit ecb1bb4
Show file tree
Hide file tree
Showing 249 changed files with 100,454 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Thumbs.db
.DS_Store
.dist
.tmp
.sass-cache
npm-debug.log
node_modules
package-lock.json
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2021 Themefisher

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:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

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.
92 changes: 92 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
# Promodise By Themefisher
Promodise appears with a winsome, tempting and pleasant interface that will fit for your business company or digital marketing agency. It features both the multipage and single page website template with a stunning appearance.

<!-- demo -->
## Example Site
| [![](screenshots/h1.jpg)](https://demo.themefisher.com/promodise/) | [![](screenshots/h2.jpg)](https://demo.themefisher.com/promodise/index-2.html) | [![](screenshots/h3.jpg)](https://demo.themefisher.com/promodise/index-3.html) |
|:---:|:---:|:---:|
| **Home 1** | **Home 2** | **Home 3** |
| [![](screenshots/about.jpg)](https://demo.themefisher.com/promodise/about.html) | [![](screenshots/service.jpg)](https://demo.themefisher.com/promodise/service.html) | [![](screenshots/pricing.jpg)](https://demo.themefisher.com/promodise/pricing.html) |
| **About** | **Service** | **Pricing** |
| [![](screenshots/blog.jpg)](https://demo.themefisher.com/promodise/blog.html) | [![](screenshots/bd.jpg)](https://demo.themefisher.com/promodise/blog-details.html) | [![](screenshots/contact.jpg)](https://demo.themefisher.com/promodise/contact.html) |
| **Blogs** | **Blogs Details** | **Contact** |

👉🏻[View Live Preview](https://demo.themefisher.com/promodise/)

<!-- resources -->
## Pages
* **Home 1**
* **Home 2**
* **Home 3**
* **About**
* **Service**
* **Pricing**
* **Blogs**
* **Blogs Details**
* **Contact**


<!-- download -->
## Download And installation
Download this template from any following options:

* Download from [Github](https://github.com/themefisher/Promodise-Startup-Business-Bootstrap-Template/archive/master.zip)
* Clone the repository: `git clone https://github.com/themefisher/Promodise-Startup-Business-Bootstrap-Template.git`
* Download from [Themefisher](https://themefisher.com/products/promodise-startup-business-template/)


<!-- installation -->
### Basic Usage
After downloading template, you can simply edit the HTML and CSS files from the `theme` folder. To preview the changes you make to the code, you can open the index.html file in your web browser.

### Advanced Usage
For advanced usage you have some dependencies to install. Then you can run it on your localhost. You can view the package.json file to see which scripts are included.

#### Install Dependencies
* **Node Installation:** [Install node js](https://nodejs.org/en/download/)
* **Gulp Installation:** Install gulp globally from your terminal
```
npm install --global gulp-cli
```
Or visit original [docs](https://gulpjs.com/docs/en/getting-started/quick-start)

#### Run Theme
After succesfully install those dependencies, open this theme with any IDE [[VS Code](https://code.visualstudio.com/) recommended], and then open internal terminal of IDM [vs code shortcut <code>ctrl/cmd+\`</code>]

* Install node package modules
```
npm install
```
* Run gulp
```
gulp
```
After that, it will open up a preview of the template in your default browser, watch for changes to core template files, and live reload the browser when changes are saved.

👉🏻 [visit documentation](https://docs.themefisher.com/promodise/)


<!-- reporting issue -->
## Reporting Issues
We use GitHub Issues as the official bug tracker for the Promodise Template. Please Search [existing issues](https://github.com/themefisher/Promodise-Startup-Business-Bootstrap-Template/issues). It’s possible someone has already reported the same problem.
If your problem or idea has not been addressed yet, feel free to [open a new issue](https://github.com/themefisher/Promodise-Startup-Business-Bootstrap-Template/issues).

<!-- support -->
## Technical Support or Questions (Paid)
If you have questions or need help integrating the product please [contact us](mailto:[email protected]) instead of opening an issue.

<!-- licence -->
## License
Copyright &copy; 2021 Designed & Developed by [Themefisher](https://themefisher.com)

**Code License:** Released under the [MIT](https://github.com/themefisher/Promodise-Startup-Business-Bootstrap-Template/blob/master/LICENSE) license.

**Image license:** The images are only for demonstration purposes. They have their own licence, we don't have permission to share those image.

<!-- resources -->
## Resources
Some third-party plugins that we used to build this template. Please check their licence.
* **Bootstrap v4.5**: https://getbootstrap.com/docs/4.5/getting-started/introduction/
* **Jquery**: https://jquery.com/download/
* **Google Fonts**: http://fonts.google.com/
* **Slick**: https://kenwheeler.github.io/slick/
122 changes: 122 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
'use strict';

var gulp = require('gulp');
var sass = require('gulp-sass');
var sourcemaps = require('gulp-sourcemaps');
var fileinclude = require('gulp-file-include');
var autoprefixer = require('gulp-autoprefixer');
var runSequence = require('run-sequence');
var bs = require('browser-sync').create();
var rimraf = require('rimraf');

var path = {
src: {
html : 'source/*.html',
others : 'source/*.+(php|ico|png)',
htminc : 'source/partials/**/*.htm',
incdir : 'source/partials/',
plugins : 'source/plugins/**/*.*',
js : 'source/js/*.js',
scss : 'source/scss/**/*.scss',
images : 'source/images/**/*.+(png|jpg|gif|svg)'
},
build: {
dirDev : 'theme/'
}
};

// HTML
gulp.task('html:build', function () {
return gulp.src(path.src.html)
.pipe(fileinclude({
basepath: path.src.incdir
}))
.pipe(gulp.dest(path.build.dirDev))
.pipe(bs.reload({
stream: true
}));
});

// SCSS
gulp.task('scss:build', function () {
return gulp.src(path.src.scss)
.pipe(sourcemaps.init())
.pipe(sass({ outputStyle: 'expanded' }).on('error', sass.logError))
.pipe(autoprefixer())
.pipe(sourcemaps.write('/'))
.pipe(gulp.dest(path.build.dirDev + 'css/'))
.pipe(bs.reload({
stream: true
}));
});

// Javascript
gulp.task('js:build', function () {
return gulp.src(path.src.js)
.pipe(gulp.dest(path.build.dirDev + 'js/'))
.pipe(bs.reload({
stream: true
}));
});

// Images
gulp.task('images:build', function () {
return gulp.src(path.src.images)
.pipe(gulp.dest(path.build.dirDev + 'images/'))
.pipe(bs.reload({
stream: true
}));
});

// Plugins
gulp.task('plugins:build', function () {
return gulp.src(path.src.plugins)
.pipe(gulp.dest(path.build.dirDev + 'plugins/'))
.pipe(bs.reload({
stream: true
}));
});

// Other files like favicon, php, sourcele-icon on root directory
gulp.task('others:build', function () {
return gulp.src(path.src.others)
.pipe(gulp.dest(path.build.dirDev))
});

// Clean Build Folder
gulp.task('clean', function (cb) {
rimraf('./theme', cb);
});

// Watch Task
gulp.task('watch:build', function () {
gulp.watch(path.src.html, ['html:build']);
gulp.watch(path.src.htminc, ['html:build']);
gulp.watch(path.src.scss, ['scss:build']);
gulp.watch(path.src.js, ['js:build']);
gulp.watch(path.src.images, ['images:build']);
gulp.watch(path.src.plugins, ['plugins:build']);
});

// Build Task
gulp.task('build', function () {
runSequence(
'clean',
'html:build',
'js:build',
'scss:build',
'images:build',
'plugins:build',
'others:build',
'watch:build',
function () {
bs.init({
server: {
baseDir: path.build.dirDev
}
});
}
);
});

gulp.task("default", ["build"]);
21 changes: 21 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "themefisher-theme-kit",
"version": "1.1.0",
"description": "Gulp environment for running HTML themes by themefisher",
"keywords": [
"gulp",
"frontend"
],
"author": "Themefisher",
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.24.5",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-file-include": "^2.0.1",
"gulp-rimraf": "^0.2.2",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"run-sequence": "^2.2.1"
}
}
Binary file added screenshots/about.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/bd.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/blog.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/contact.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/h1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/h2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/h3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/pricing.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/service.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions source/about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@@include('header.htm')
@@include('blocks/navigation.htm')
@@include('blocks/page-title.htm', {
"title": "Check our story",
"description": "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Unde, perferendis?"
})


@@include('blocks/about-2.htm')
@@include('blocks/company.htm')
@@include('blocks/counter-2.htm')
@@include('blocks/service-2.htm')
@@include('blocks/team.htm')
@@include('blocks/partner.htm')

@@include('blocks/footer.htm')
@@include('footer.htm')
22 changes: 22 additions & 0 deletions source/blog-single.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
@@include('header.htm')
@@include('blocks/navigation.htm')
@@include('blocks/page-title.htm', {
"title": "Blog Details",
"description": "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Unde, perferendis?"
})

<section class="section blog-wrap">
<div class="container">
<div class="row">
<div class="col-lg-8">
@@include('blocks/single-blog.htm')
</div>
<div class="col-lg-4">
@@include('blocks/post-sidebar.htm')
</div>
</div>
</div>
</section>

@@include('blocks/footer.htm')
@@include('footer.htm')
22 changes: 22 additions & 0 deletions source/blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
@@include('header.htm')
@@include('blocks/navigation.htm')
@@include('blocks/page-title.htm', {
"title": "Latest news",
"description": "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Unde, perferendis?"
})

<section class="section blog-wrap ">
<div class="container">
<div class="row">
<div class="col-lg-8">
@@include('blocks/blog-posts.htm')
</div>
<div class="col-lg-4">
@@include('blocks/post-sidebar.htm')
</div>
</div>
</div>
</section>

@@include('blocks/footer.htm')
@@include('footer.htm')
Loading

0 comments on commit ecb1bb4

Please sign in to comment.