Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
galichy79 committed Sep 9, 2022
1 parent 4ef75fe commit 412868a
Show file tree
Hide file tree
Showing 127 changed files with 2,756 additions and 6 deletions.
8 changes: 5 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
_site/
.sass-cache/
.jekyll-cache/
_site
.sass-cache
.jekyll-metadata
*.DS_Store
Gemfile.lock
.jekyll-cache
15 changes: 15 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: page
title: Page not found
image:
permalink: /404.html
---
<div class="container">
<div class="row">
<div class="col col-12" style="text-align: center">
<h2>404</h2>
<p>The requested page could not be found.</p>
<p><a href="{{site.baseurl}}/">Back to the bLog</a></p>
</div>
</div>
</div>
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source 'https://rubygems.org'
gem 'bundler'
gem 'jekyll'
gem 'jekyll-sitemap'
gem 'wdm', '>= 0.1.0'
gem "webrick", "~> 1.7"
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License
The MIT License (MIT)

Copyright (c) 2022 Anastasiia2001
Copyright (c) 2016 - Present, 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
Expand Down
59 changes: 58 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,58 @@
# Anastasiia2001.github.io
# Kross Jekyll

Kross Jekyll Creative Portfolio Template ported from [Kross HTML Template](https://themefisher.com/products/kross/)

## Demo

| Homepage | About | Blog | Portfolio | Contact |
|---|---|---|---|---|
| ![Homepage](https://user-images.githubusercontent.com/37659754/58154295-1a9c5300-7c93-11e9-992c-ad8d2ff8d99f.png) | ![About](https://user-images.githubusercontent.com/37659754/58154317-28ea6f00-7c93-11e9-914b-b7e5f1cdab0e.png) | ![Blog](https://user-images.githubusercontent.com/37659754/58154339-369ff480-7c93-11e9-9568-53b7ebdc6b2d.png) | ![portfolio](https://user-images.githubusercontent.com/37659754/58154368-491a2e00-7c93-11e9-8900-f5a6abe0a61d.png) | ![contact](https://user-images.githubusercontent.com/37659754/58154403-57684a00-7c93-11e9-9cea-ea28253a6f6a.png) |

[Live Preview](http://demo.themefisher.com/kross).

## Setup

To start your project, fork this repository
After forking the repo, your site will be live immediately on your personal Github Pages account, e.g. `https://yourusername.github.io/your-repo-name/`.

Make sure GitHub Pages is enabled for your repo. It might take some time for the site to propagate entirely.

## Customize

Things you can customize in `_data/settings.yml` (no HTML/CSS):

- Theme General Settings ( name, logo, email, phone, address )
- Hero Section
- About Section
- Team Section
- Skills Section
- Experience Section
- Education Section
- Services Section
- Portfolio Section
- Testimonials Section
- Client Slider Section
- Contact Section

## Deployment

To run the theme locally, navigate to the theme directory and run `bundle install` to install the dependencies, then run `jekyll serve` or `bundle exec jekyll serve` to start the Jekyll server.
I would recommend checking the [Deployment Methods](https://jekyllrb.com/docs/deployment-methods/) page on Jekyll's website.

## Reporting Issues

We use GitHub Issues as the official bug tracker for the **Kross Theme**. Please Search [existing issues](https://github.com/themefisher/kross-jekyll/issues). It’s possible someone has already reported the same problem.
If your problem or idea is not addressed yet, [open a new issue](https://github.com/themefisher/kross-jekyll/issues/new)

## Technical Support or Questions

If you have questions or need help integrating the product please [contact us](mailto:[email protected]) instead of opening an issue.

<!-- licence -->
## License

Copyright (c) 2016 - Present, Designed & Developed by [Themefisher](https://themefisher.com)

**Code License:** Released under the [MIT](https://github.com/themefisher/kross-jekyll/blob/main/LICENSE) license.

**Image license:** The images are only for demonstration purposes. They have their license, we don't have permission to share those images.
34 changes: 34 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com

# Build settings
markdown: kramdown
permalink: pretty
plugins:
- jekyll-sitemap
compress_html:
clippings: all
comments: all
startings: [html, head, body]

# Pages Path
defaults:
- scope:
path: "_pages"
values:
permalink: /:basename:output_ext

include:
- _pages

sass:
sass_dir: assets/scss
style: compressed

# Exclude from processing.
exclude:
- Gemfile
- Gemfile.lock
- LICENSE.text
- README.md
- SECURITY.md
12 changes: 12 additions & 0 deletions _data/plugins.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
################ CSS Plugins #####################
css:
- "/assets/plugins/bootstrap/bootstrap.min.css"
- "/assets/plugins/themify-icons/themify-icons.css"
- "/assets/plugins/slick/slick.css"

################ JS Plugins ######################
js:
- "/assets/plugins/jQuery/jquery.min.js"
- "/assets/plugins/bootstrap/bootstrap.min.js"
- "/assets/plugins/shuffle/shuffle.min.js"
- "/assets/plugins/slick/slick.min.js"
Loading

0 comments on commit 412868a

Please sign in to comment.