mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 11:34:21 +00:00
💥 Update a few things (0.2.0)
This commit is contained in:
parent
0788de2324
commit
a22308b489
13 changed files with 171 additions and 13 deletions
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="DiscordProjectSettings">
|
||||
<option name="show" value="ASK" />
|
||||
<option name="show" value="PROJECT_FILES" />
|
||||
<option name="description" value="" />
|
||||
</component>
|
||||
</project>
|
|
@ -1,6 +1,7 @@
|
|||
<component name="InspectionProjectProfileManager">
|
||||
<profile version="1.0">
|
||||
<option name="myName" value="Project Default" />
|
||||
<inspection_tool class="HtmlUnknownTarget" enabled="false" level="WARNING" enabled_by_default="false" />
|
||||
<inspection_tool class="Rubocop" enabled="false" level="WARNING" enabled_by_default="false" />
|
||||
</profile>
|
||||
</component>
|
17
_includes/post-summary.html
Normal file
17
_includes/post-summary.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<section class="panel post-summary">
|
||||
<div class="post-title">
|
||||
<a href="{{ post.url }}">
|
||||
{{ post.title }}
|
||||
</a>
|
||||
</div>
|
||||
<div class="post-date">
|
||||
<time>
|
||||
{{ post.date }}
|
||||
</time>
|
||||
</div>
|
||||
<div class="post-tags">
|
||||
{% for tag in post.tags %}
|
||||
{% include tag.html %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</section>
|
5
_includes/tag.html
Normal file
5
_includes/tag.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<div class="panel tag">
|
||||
<a href="{{ site.url }}/#tag-{{ tag }}">
|
||||
{{ tag }}
|
||||
</a>
|
||||
</div>
|
|
@ -5,7 +5,9 @@ layout: default
|
|||
<div class="layout layout-threecol">
|
||||
<div class="layout-threecol-center">
|
||||
<h1>
|
||||
<a href="{{ site.url }}">
|
||||
{{ site.title }}
|
||||
</a>
|
||||
</h1>
|
||||
{{ content }}
|
||||
</div>
|
||||
|
|
|
@ -5,4 +5,3 @@ layout: base
|
|||
<section class="panel panel-box">
|
||||
{{ content }}
|
||||
</section>
|
||||
|
||||
|
|
|
@ -4,13 +4,13 @@
|
|||
<link rel="stylesheet" href="https://gh.steffo.eu/bluelib/src/targets/skeleton.root.css" type="text/css"/>
|
||||
<link rel="stylesheet" href="https://gh.steffo.eu/bluelib/src/targets/{{ site.bluelib }}.root.css" type="text/css"/>
|
||||
<link rel="stylesheet" href="https://gh.steffo.eu/bluelib/src/targets/{{ page.bluelib }}.root.css" type="text/css"/>
|
||||
<link rel="stylesheet" href="{% link /assets/css/bluelib-jekyll.css %}"/>
|
||||
{% for css in site.extra_css %}
|
||||
<link rel="stylesheet" href="{{ css }}"/>
|
||||
<link rel="stylesheet" href="{% link css %}"/>
|
||||
{% endfor %}
|
||||
<title>{{ page.title }}</title>
|
||||
<title>{{ page.title }} - {{ site.title }}</title>
|
||||
</head>
|
||||
<body>
|
||||
{{ content }}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
43
_layouts/home.html
Normal file
43
_layouts/home.html
Normal file
|
@ -0,0 +1,43 @@
|
|||
---
|
||||
layout: base
|
||||
---
|
||||
|
||||
<section class="panel panel-box">
|
||||
<h2>
|
||||
{{ page.title }}
|
||||
</h2>
|
||||
{{ content }}
|
||||
</section>
|
||||
|
||||
<section class="panel panel-box">
|
||||
<h2>
|
||||
Latest posts
|
||||
</h2>
|
||||
<p>
|
||||
These are the latest posts in the blog in reverse chronological order.
|
||||
</p>
|
||||
{% for post in site.posts %}
|
||||
{% include post-summary.html %}
|
||||
{% endfor %}
|
||||
</section>
|
||||
|
||||
<section class="panel panel-box">
|
||||
<h2>
|
||||
Posts by tag
|
||||
</h2>
|
||||
<p>
|
||||
These are all the posts in the blog, grouped by their tag.
|
||||
</p>
|
||||
<section class="chapter">
|
||||
{% for tag_pair in site.tags %}
|
||||
<section id="tag-{{ tag_pair[0] }}" class="panel panel-box">
|
||||
<h3>
|
||||
{{ tag_pair[0] }}
|
||||
</h3>
|
||||
{% for post in tag_pair[1] %}
|
||||
{% include post-summary.html %}
|
||||
{% endfor %}
|
||||
</section>
|
||||
{% endfor %}
|
||||
</section>
|
||||
</section>
|
|
@ -1,10 +1,25 @@
|
|||
---
|
||||
layout: box
|
||||
layout: base
|
||||
---
|
||||
|
||||
<h2>
|
||||
<section class="panel panel-box page-info">
|
||||
<div class="panel page-date">
|
||||
<time>
|
||||
{{ page.date }}
|
||||
</time>
|
||||
</div>
|
||||
<div class="page-tags">
|
||||
{% for tag in page.tags %}
|
||||
{% include tag.html %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="panel panel-box">
|
||||
<h2>
|
||||
<a href="{{ page.url }}">
|
||||
{{ page.title }}
|
||||
</h2>
|
||||
{{ content }}
|
||||
|
||||
|
||||
</a>
|
||||
</h2>
|
||||
{{ content }}
|
||||
</section>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: post
|
||||
title: "Hello world!"
|
||||
tag: example
|
||||
---
|
||||
|
||||
This is a sample post made to display posts made using `jekyll-theme-bluelib`.
|
||||
|
|
69
assets/css/bluelib-jekyll.css
Normal file
69
assets/css/bluelib-jekyll.css
Normal file
|
@ -0,0 +1,69 @@
|
|||
.post-summary {
|
||||
display: grid;
|
||||
|
||||
grid-template-areas:
|
||||
"title tags"
|
||||
"date tags";
|
||||
grid-template-columns: auto 1fr;
|
||||
grid-template-rows: auto 1fr;
|
||||
grid-column-gap: 8px;
|
||||
grid-row-gap: 2px;
|
||||
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.post-summary > .post-title {
|
||||
grid-area: title;
|
||||
justify-self: start;
|
||||
|
||||
font-size: large;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.post-summary > .post-date {
|
||||
grid-area: date;
|
||||
justify-self: start;
|
||||
|
||||
font-style: italic;
|
||||
font-size: x-small;
|
||||
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.post-summary > .post-tags {
|
||||
grid-area: tags;
|
||||
justify-self: end;
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.page-info {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 4px;
|
||||
justify-content: space-between;
|
||||
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.page-info > .page-date {
|
||||
display: inline !important;
|
||||
margin: 0 !important;
|
||||
width: auto !important;
|
||||
|
||||
justify-self: start;
|
||||
}
|
||||
|
||||
.page-info > .page-tags {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.tag {
|
||||
display: inline !important;
|
||||
margin: 0 !important;
|
||||
width: auto !important;
|
||||
}
|
6
index.html
Normal file
6
index.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
layout: home
|
||||
title: "jekyll-theme-bluelib"
|
||||
---
|
||||
|
||||
Appearently, Jekyll needs <code>index.html</code> to exist.
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
Gem::Specification.new do |spec|
|
||||
spec.name = "jekyll-theme-bluelib"
|
||||
spec.version = "0.1.1"
|
||||
spec.version = "0.2.0"
|
||||
spec.authors = ["Stefano Pigozzi"]
|
||||
spec.email = ["me@steffo.eu"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue