Skip to content

Commit

Permalink
Add swiss theme
Browse files Browse the repository at this point in the history
  • Loading branch information
sierisimo committed Feb 6, 2024
1 parent 36b11fe commit 08c04eb
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 28 deletions.
3 changes: 2 additions & 1 deletion CODE_OF_CONDUCT.md
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
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Jalapenio Unconference by JConf Mexico
---
title: Jalapenio Unconference by JConfMexico
layout: home
---

Welcome to **Jalapenio Unconference**, an event organized by [JConf Mexico](https://github.com/JConfMexico) focusing on JVM and modern JVM technologies.

Expand Down
34 changes: 8 additions & 26 deletions _config.yml
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/

Expand Down
67 changes: 67 additions & 0 deletions _layouts/home.html
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>

0 comments on commit 08c04eb

Please sign in to comment.