-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f9e30e8
Showing
206 changed files
with
9,034 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.mp4 filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "bundler" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "monthly" | ||
- package-ecosystem: "github-actions" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "monthly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
# Sample workflow for building and deploying a Jekyll site to GitHub Pages | ||
name: Deploy Jekyll site to Pages | ||
|
||
on: | ||
# Runs on pushes targeting the default branch | ||
push: | ||
branches: ["main"] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow one concurrent deployment | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# Build job | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
lfs: true | ||
- name: Setup Pages | ||
id: pages | ||
uses: actions/configure-pages@v3 | ||
- name: Build with Jekyll | ||
uses: actions/jekyll-build-pages@v1 | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v1 | ||
|
||
# Deployment job | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
### General ### | ||
*.lock | ||
|
||
### Jekyll ### | ||
_site/ | ||
|
||
### Sass ### | ||
.sass-cache | ||
|
||
### Windows ### | ||
# Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
.DS_Store | ||
**/.DS_Store | ||
**/._.DS_Store | ||
|
||
vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
source "http://rubygems.org" | ||
|
||
gem 'github-pages' | ||
gem 'compass' | ||
gem 'sass-media_query_combiner' | ||
gem 'autoprefixer-rails' | ||
gem 'webrick' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# Project Zeppelin / GDG DevFest 2014 site template | ||
|
||
## About | ||
|
||
Project Zeppelin allows you to setup awesome GDG DevFest site in 5 minutes. | ||
|
||
Project is built on top of [Jekyll](http://jekyllrb.com/) - simple, blog-aware, static site generator. Jekyll also happens to be the engine behind GitHub Pages, which means you can use Jekyll to host your website from GitHub’s servers for free. [Learn more about Jekyll](http://jekyllrb.com/). | ||
|
||
Template is brought by [GDG Lviv](http://lviv.gdg.org.ua/) team. | ||
|
||
## Local development | ||
|
||
Check if you have [all requirements for local environment](http://jekyllrb.com/docs/installation/). | ||
To install all development dependencies install [Bundler](http://bundler.io/). | ||
|
||
```cmd | ||
gem install bundler | ||
``` | ||
|
||
and run next command from root folder: | ||
|
||
```cmd | ||
bundle install | ||
``` | ||
|
||
To start Jekyll run: | ||
|
||
```cmd | ||
jekyll serve -w | ||
``` | ||
|
||
Site will be available at <http://127.0.0.1:4000/> or <http://localhost:4000/> | ||
|
||
**NOTE:** in this mode all changes to html and data files will be automatically regenerated, but after changing ```_config.yml``` you have to restart server. | ||
|
||
### Sass(Compass) support | ||
|
||
**Note:** You need to install [Node.js](http://nodejs.org/download/) | ||
|
||
To watch changes of `.sass` files and compile it to the `.css` on a fly change property `safe: true` to `safe: false` in `_config.yml`. | ||
**Note: It works only on local machine, because GitHub runs Jekyll in `--save` [mode](https://help.github.com/articles/using-jekyll-with-pages/#configuration-overrides)** | ||
|
||
Learn more about Sass development from [documentation](https://github.com/gdg-x/zeppelin/wiki/Sass-development). | ||
|
||
```cmd | ||
compass watch | ||
``` | ||
|
||
## Documentation | ||
|
||
Quick-start guide is not enough? Checkout [full documentation](https://github.com/gdg-x/zeppelin/wiki). | ||
|
||
### Used libraries | ||
|
||
* [Bootstrap](https://github.com/twbs/bootstrap) | ||
* [Animate.css](https://github.com/daneden/animate.css) | ||
* [Waves](https://github.com/publicis-indonesia/Waves) | ||
* [jquery.appear](https://github.com/bas2k/jquery.appear) | ||
* [jQuery countTo Plugin](https://github.com/mhuggins/jquery-countTo) | ||
* [Typed.js](https://github.com/mattboldt/typed.js) | ||
* [Sticky-kit](https://github.com/leafo/sticky-kit) | ||
|
||
### Contributors | ||
|
||
* Design and web development: [Oleh Zasadnyy](https://github.com/ozasadnyy) | ||
* Idea: [Vitaliy Zasadnyy](https://github.com/zasadnyy) | ||
|
||
See [list of contributors](https://github.com/gdg-x/zepplin/graphs/contributors) | ||
|
||
Maintainers: [@tasomaniac](https://github.com/tasomaniac) and [@ozasadnyy](https://github.com/ozasadnyy). | ||
|
||
### License | ||
|
||
Project is published under the [MIT license](https://github.com/gdg-x/zeppelin/blob/master/LICENSE.txt). Feel free to clone and modify repo as you want, but don't forget to add reference to authors :) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2014 - 2017 Oleh Zasadnyy, Vitaliy Zasadnyy | ||
|
||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# QGIS UC 2024 web | ||
|
||
> Based on Project Zeppelin / GDG DevFest 2014 site template. | ||
> See [INSTALL.md](INSTALL.md) for more details. | ||
## Content | ||
|
||
- "About" page: [`_pages/about.md`](_pages/about.md) | ||
- "FAQ" page: [`_pages/about/faq.md`](_pages/about/faq.md) | ||
- "Register" page: [`_pages/_content/register.md`](_pages/_content/register.md) | ||
- Tickets: [`_data/tickets.yml`](_data/tickets.yml) | ||
- "Travel grant" page: [`_pages/register/travel-grant.md`](_pages/register/travel-grant.md) | ||
- "Visa info" page: [`_pages/register/visa-info.md`](_pages/register/visa-info.md) | ||
- "Call for papers" page: [`_pages/call-for-papers.md`](_pages/call-for-papers.md) | ||
- "Call for sponsors" page: [`_pages/sponsors/call-for-sponsors.md`](_pages/sponsors/call-for-sponsors.md) | ||
- Committees: | ||
- LOC: [`_data/team-loc.yml`](_data/team-loc.yml) | ||
- Program: [`_data/team-program.yml`](_data/team-program.yml) | ||
- Academic Track: [`_data/team-academic.yml`](_data/team-academic.yml) | ||
- "Code of Conduct" page: [`_pages/code-of-conduct.md`](_pages/code-of-conduct.md) | ||
- "Privacy Policy" page: [`_pages/privacy.md`](_pages/privacy.md) |
Oops, something went wrong.