Skip to content

Commit f5e36b8

Browse files
committed
Fix: cleanup css and links between blogs
1 parent 6709db8 commit f5e36b8

7 files changed

+24
-10
lines changed

_includes/archive-cards.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
{% endif %}
88

99
<div class="card__bkg">
10-
<h3 class="card-title">{{ post.title | markdownify | strip_html | truncate: 60 }}</h3>
10+
<h3 class="card-title">{{ post.title | markdownify | strip_html }}</h3>
1111
</div>
1212
<div class="card-excerpt">
13-
<p>{{ post.excerpt | truncate: 100}}</p>
13+
<p>{{ post.excerpt | truncate: 180}}</p>
1414
</div>
1515
</div>
1616
</a>

_posts/2023-01-26-community-manager-job-available.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: single
33
title: "CLOSED - Job Posting: pyOpenSci is Hiring a Community Manager"
4-
excerpt: "This position has been filled! We are no longer accepting applications. "
4+
excerpt: "This position for a pyOpenSci community manager has been filled! We are no longer accepting applications. "
55
author: "Leah Wasser"
66
permalink: /blog/pyOpenSci-hiring-community-manager-spring-2023.html
77
header:

_posts/2023-06-13-pycon2023-peer-review-david-nicholson-crowsetta.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ categories:
1313
- highlight
1414
- peer-review
1515
toc: false
16+
classes: wide
1617
comments: true
1718
---
1819

@@ -38,7 +39,8 @@ Just a few months prior, David had submitted a package he's been developing call
3839

3940
In his talk (which was NOT about ChatGPT in case you were wondering :) ), David talked about who was involved and what the process and his experience was like. Check out the video below to learn more!
4041

41-
The talk itself is about 5 minutes long but you can always keep it running to see the other lightning talks posted by the pyCon organizers. All of the pyCon 2023 US talks are online if you want to check out some of the others!
42+
The talk itself is about 5 minutes long but you can always keep it running to see the other lightning talks posted by the pyCon organizers. All of the pyCon 2023 US talks are online if you want to check out some of the others! [You can also check out our
43+
pyOpenSci presentation about Python Packaging and experiences with the sprints here if you'd like.](pycon-2023-packaging-presentation-sprints-leah-wasser.html)
4244

4345
## About the pyOpenSci peer review process
4446

_posts/2023-06-14-pycon-maintainers-summit-python-packaging-talk-leah-wasser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,4 +225,4 @@ are now involved with pyOpenSci.
225225

226226
One of the other highlights of the meeting that I can't forget to mention is
227227
David getting up on the ginormous speaker stage in the main ballroom and
228-
giving a lightning talk about his experience submitting Crowsetta, a Python package, to pyOpenSci. Check out a blog on that here.
228+
giving a lightning talk about his experience submitting Crowsetta, a Python package, to pyOpenSci. [Check out a blog on his talk and watch the 5 minute presentation here.](/blog/pycon2023-crowsetta-peer-review.html) It was awesome!

_sass/minimal-mistakes/_archive.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
//font-family: $sans-serif-narrow;
4949
line-height: initial;
5050
overflow: hidden;
51-
text-overflow: ellipsis;
51+
//text-overflow: ellipsis;
5252

5353
a[rel="permalink"]::before {
5454
content: '';

_sass/minimal-mistakes/_pyos-grid.scss

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,29 +39,36 @@
3939
display: grid;
4040
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
4141
grid-auto-rows: 1fr;
42-
grid-column-gap: 10px;
42+
grid-column-gap: 7px;
4343
grid-row-gap: 30px;
4444
margin-bottom: 20px;
4545

4646
h3.card-title {
47-
font-size: 1.1em!important;
47+
font-size: 1em!important;
4848
text-align: left;
4949
margin-top: 0;
5050
vertical-align: middle;
5151
}
5252

53+
card-excerpt {
54+
font-size: .8em;
55+
56+
}
57+
5358
.card__bkg {
5459
padding-top: 30px;
5560

5661
}
5762
article {
5863
display: contents;
5964
}
65+
6066
a {
6167
text-decoration: none;
6268
}
69+
6370
p {
64-
font-size: 1.1em!important;
71+
font-size: 1em;
6572
font-weight: 400;
6673
}
6774
}
@@ -194,6 +201,11 @@
194201

195202
.card-excerpt{
196203
font-size: .8em;
204+
padding-top: 0;
205+
206+
& p {
207+
margin-top: 0;
208+
}
197209
}
198210
.card-title {
199211

_sass/minimal-mistakes/_variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ $type-size-1: 2.441em !default; // ~39.056px
4040
$type-size-2: 1.953em !default; // ~31.248px
4141
$type-size-3: 1.563em !default; // ~25.008px
4242
$type-size-4: 1.25em !default; // ~20px
43-
$type-size-5: .9em !default; // ~16px
43+
$type-size-5: .85em !default; // ~16px
4444
$type-size-6: 0.65em !default; // ~12px main body font
4545
$type-size-7: 0.6875em !default; // ~11px
4646
$type-size-8: 0.625em !default; // ~10px

0 commit comments

Comments
 (0)