-
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
Showing
4 changed files
with
81 additions
and
28 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
permalink: Code of Conduct | ||
title: Code of Conduct | ||
layout: page | ||
--- | ||
|
||
# Jalapenio Unconference Code of Conduct | ||
|
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
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 |
---|---|---|
@@ -1,40 +1,22 @@ | ||
# Welcome to Jekyll! | ||
# | ||
# This config file is meant for settings that affect your whole blog, values | ||
# which you are expected to set up once and rarely edit after that. If you find | ||
# yourself editing this file very often, consider using Jekyll's data files | ||
# feature for the data you need to update frequently. | ||
# | ||
# For technical reasons, this file is *NOT* reloaded automatically when you use | ||
# 'bundle exec jekyll serve'. If you change this file, please restart the server process. | ||
# | ||
# If you need help with YAML syntax, here are some quick references for you: | ||
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml | ||
# https://learnxinyminutes.com/docs/yaml/ | ||
# | ||
# Site settings | ||
# These are used to personalize your new site. If you look in the HTML files, | ||
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. | ||
# You can create any custom variable you would like, and they will be accessible | ||
# in the templates via {{ site.myvariable }}. | ||
|
||
title: Jalapenio Unconference | ||
# email: [email protected] | ||
description: >- # this means to ignore newlines until "baseurl:" | ||
An unconference by JConf Mexico focusing on JVM and modern JVM technologies. | ||
# baseurl: "" # the subpath of your site, e.g. /blog | ||
# url: "" # the base hostname & protocol for your site, e.g. http://example.com | ||
# baseurl: "jalapenio" # the subpath of your site, e.g. /blog | ||
# url: "https://jconfmexico.github.io" # the base hostname & protocol for your site, e.g. http://example.com | ||
twitter_username: jconfmexico | ||
github_username: JConfMexico | ||
social_username: jconfmexico | ||
|
||
# Build settings | ||
theme: minima | ||
# plugins: | ||
# - jekyll-feed | ||
|
||
# theme: minima | ||
remote_theme: broccolini/swiss | ||
# Navigation | ||
# nav: | ||
# - text: Home | ||
# url: / | ||
# - text: Code of Conduct | ||
# url: /code-of-conduct | ||
|
||
# permalink: /:title/ | ||
|
||
|
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,67 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
{% include head.html %} | ||
|
||
<body> | ||
|
||
<div> | ||
|
||
<header class="header-background"> | ||
|
||
<div class="clearfix border-bottom-thick header-border"> | ||
<ul class="list-reset right py-1 header-text font-smoothing"> | ||
{% for my_page in site.pages %} | ||
{% if my_page.title %} | ||
<li class="inline-block"> | ||
<a class="align-middle link-primary header-link mr-2" href="{{ my_page.url | prepend: site.baseurl }}">{{ my_page.title }}</a> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
|
||
<div class="container mx-auto px-2 mb-2 clearfix header-text"> | ||
<h1 class="h0 inline-block col-9 sm-width-full py-4 mt-3 header-title">{{ site.title }}</h1> | ||
|
||
<div class="clearfix mb-4 py-1"> | ||
<div class="col-4 sm-width-full left border-top-thin"> | ||
<div class="table"> | ||
<div class="inline-block mt-3 mr-1"> | ||
{% include dot-accent.html %} | ||
</div> | ||
<div class="inline-block mt-3 mr-1"> | ||
{% include dot-accent.html %} | ||
</div> | ||
<div class="inline-block mt-3"> | ||
{% include github.html %} | ||
</div> | ||
</div> | ||
<!-- Set site description in config.yml --> | ||
<p class="h4 lh-condensed font-smoothing mt-2 py-1">{{ site.description }}</p> | ||
</div> | ||
|
||
<div class="col-4 sm-width-full left border-top-thin mt-3 mt-lg-0 ml-lg-4 table"> | ||
<div class="inline-block mt-3 mr-1"> | ||
{% include dot.html %} | ||
</div> | ||
<div class="inline-block mt-3"> | ||
{% include {{ site.social_link | default: "twitter" }}.html %} | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</header> | ||
|
||
<div class="container mx-auto px-2 py-4"> | ||
{{ content }} | ||
</div> | ||
|
||
</div> | ||
|
||
{% include footer.html %} | ||
|
||
</body> | ||
|
||
</html> |