Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #108

Merged
merged 2 commits into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0
rev: v3.0.1
hooks:
- id: prettier
additional_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion assets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ body {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 6;
-webkit-box-orient: vertical;
-webkit-box-orient: vertical;

font-size: 0.8rem;
transition: all 200ms ease-in-out;
Expand Down
24 changes: 0 additions & 24 deletions layouts/about/list.html
Original file line number Diff line number Diff line change
@@ -1,24 +0,0 @@
<!DOCTYPE html>
<html>
<head>
{{ partial "head" . }}
</head>
<body>
<header>
{{ partial "header" . }}
</header>
<div id="wrapper">
<div id="content">
<div id="page-content">
<h1>{{ .Title }}</h1>
<article class="post">
<div class="post-content">
{{ .Content }}
</div>
</article>
</div>
</div>
</div>
{{ partial "footer" . }}
</body>
</html>
23 changes: 0 additions & 23 deletions layouts/blog/baseof.html
Original file line number Diff line number Diff line change
@@ -1,23 +0,0 @@
<!DOCTYPE html>
<html>
<head>
{{ partial "head" . }}
{{ with .OutputFormats.Get "rss" -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" descr="rol"/>` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
</head>
<body>
<header>
{{ partial "header" . }}
</header>
<div id="wrapper">
<div id="content">
<div id="page-content" class="items-list">
{{ block "main" . }}
{{ end }}
</div>
</div>
</div>
{{ partial "footer" . }}
</body>
</html>
16 changes: 0 additions & 16 deletions layouts/blog/list.html
Original file line number Diff line number Diff line change
@@ -1,16 +0,0 @@
{{ define "main" }}
<h1>Blog</h1>
{{ range .Pages }}
<a href="{{ .Permalink }}">
<article class="page-item">
<div class="page-item-date">
<span>{{ .Date.Format "January 02, 2006" }}</span>
</div>
<div class="page-item-content">
<h2>{{ .Title }}</h2>
<span>{{ .Description }}</span>
</div>
</article>
</a>
{{ end }}
{{ end }}
20 changes: 0 additions & 20 deletions layouts/blog/single-baseof.html
Original file line number Diff line number Diff line change
@@ -1,20 +0,0 @@
<!DOCTYPE html>
<html>
<head>
{{ partial "head" . }}
</head>
<body>
<header>
{{ partial "header" . }}
</header>
<div id="wrapper">
<div id="content">
<div id="page-content">
{{ block "main" . }}
{{ end }}
</div>
</div>
</div>
{{ partial "footer" . }}
</body>
</html>
22 changes: 0 additions & 22 deletions layouts/blog/single.html
Original file line number Diff line number Diff line change
@@ -1,22 +0,0 @@
{{ define "main" }}
<article class="post">
<h1 class="post-title">{{ .Title }}</h1>
<div class="post-subtitle">
<span class="post-date">{{ .Date.Format "January 02, 2006" }}</span>
<div class="rss-icon">
<a href="/blog/index.xml">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
<path d="M5 3a1 1 0 000 2c5.523 0 10 4.477 10 10a1 1 0 102 0C17 8.373 11.627 3 5 3z"></path>
<path
d="M4 9a1 1 0 011-1 7 7 0 017 7 1 1 0 11-2 0 5 5 0 00-5-5 1 1 0 01-1-1zM3 15a2 2 0 114 0 2 2 0 01-4 0z"
></path>
</svg>
</a>
</div>
</div>
<span class="post-author">{{ .Params.Author }}</span>
<div class="post-content">
{{ .Content }}
</div>
</article>
{{ end }}
23 changes: 0 additions & 23 deletions layouts/events/baseof.html
Original file line number Diff line number Diff line change
@@ -1,23 +0,0 @@
<!DOCTYPE html>
<html>
<head>
{{ partial "head" . }}
{{ with .OutputFormats.Get "rss" -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" descr="rol"/>` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
</head>
<body>
<header>
{{ partial "header" . }}
</header>
<div id="wrapper">
<div id="content">
<div id="page-content" class="items-list">
{{ block "main" . }}
{{ end }}
</div>
</div>
</div>
{{ partial "footer" . }}
</body>
</html>
17 changes: 0 additions & 17 deletions layouts/events/list.html
Original file line number Diff line number Diff line change
@@ -1,17 +0,0 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages }}
<a href="{{ .Permalink }}">
<article class="page-item">
<div class="page-item-date">
<span>{{ .Date.Format "January 02, 2006" }}</span>
</div>
<div class="page-item-content">
<h2>{{ .Title }}</h2>
<span>{{ .Description }}</span>
</div>
</article>
</a>
{{ end }}
{{ end }}
20 changes: 0 additions & 20 deletions layouts/events/single-baseof.html
Original file line number Diff line number Diff line change
@@ -1,20 +0,0 @@
<!DOCTYPE html>
<html>
<head>
{{ partial "head" . }}
</head>
<body>
<header>
{{ partial "header" . }}
</header>
<div id="wrapper">
<div id="content">
<div id="page-content">
{{ block "main" . }}
{{ end }}
</div>
</div>
</div>
{{ partial "footer" . }}
</body>
</html>
22 changes: 0 additions & 22 deletions layouts/events/single.html
Original file line number Diff line number Diff line change
@@ -1,22 +0,0 @@
{{ define "main" }}
<article class="post">
<h1 class="post-title">{{ .Title }}</h1>
<div class="post-subtitle">
<span class="post-date">{{ .Date.Format "January 02, 2006" }}</span>
<div class="rss-icon">
<a href="/events/index.xml">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
<path d="M5 3a1 1 0 000 2c5.523 0 10 4.477 10 10a1 1 0 102 0C17 8.373 11.627 3 5 3z"></path>
<path
d="M4 9a1 1 0 011-1 7 7 0 017 7 1 1 0 11-2 0 5 5 0 00-5-5 1 1 0 01-1-1zM3 15a2 2 0 114 0 2 2 0 01-4 0z"
></path>
</svg>
</a>
</div>
</div>
<span class="post-author">{{ .Params.Author }}</span>
<div class="post-content">
{{ .Content }}
</div>
</article>
{{ end }}
80 changes: 0 additions & 80 deletions layouts/index.html
Original file line number Diff line number Diff line change
@@ -1,80 +0,0 @@
<!DOCTYPE html>
<html>
<head>
{{ partial "head" . }}
</head>
<body>
<header>
{{ partial "header" . }}
</header>
<div id="wrapper">
<div id="content">
<div id="cover" class="mw-10">
{{ partial "main/cover" . }}
{{ partial "main/packages" . }}


<section id="ecosystem">
<div class="section-heading">Ecosystem</div>
<div class="section-content">
<p class="section-paragraph">
{{ .Params.ecosystem.text | markdownify }}
</p>
<a href="/packages/#ecosystem">
<div class="more">Continue to scverse ecosystem</div>
</a>
</div>
</section>

<section id="mission">
<div class="section-heading">Mission</div>
<div class="section-content">
<p class="section-paragraph">
{{ .Params.mission.text | markdownify }}
</p>
<a href="/about">
<div class="more">Read more about scverse</div>
</a>
</div>
</section>

<section id="team">
<div class="section-heading">Team</div>
<div class="section-content">
<p class="section-paragraph">
{{ .Params.team.text | markdownify }}
</p>
<a href="/people">
<div class="more">Learn more about scverse community</div>
</a>
</div>
</section>

<section id="references">
<div class="section-heading">References</div>
<div class="section-content">
{{ if .Params.references }}
<p class="section-paragraph">
{{ .Params.references.text | markdownify }}
</p>
<div class="tiles-list" id="refs-list">
{{ $refs := .Params.references.citations }}
{{ range $i, $e := $refs }}
<a href="{{ .url }}" target="_blank">
<div class="ref-tile" id="{{ .id }}-ref-tile">
<div class="ref-text">
{{ .text }}
</div>
</div>
</a>
{{ end }}
</div>
{{ end }}
</div>
</section>
</div>
</div>
</div>
{{ partial "footer" . }}
</body>
</html>
68 changes: 0 additions & 68 deletions layouts/join/list.html
Original file line number Diff line number Diff line change
@@ -1,68 +0,0 @@
<!DOCTYPE html>
<html>
<head>
{{ partial "head" . }}
</head>
<body>
<header>
{{ partial "header" . }}
</header>
<div id="wrapper">
<div id="content">
<div id="page-content">
<h1>{{ .Title }}</h1>
<article class="post">
<div class="post-content" id="join-content">
<div class="row">
{{ range $item := .Params.resources }}
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-6">
<div class="card border-0 bg-light mb-4" id="{{ $item.id }}">
<div class="card-body">
<a href="{{ $item.link }}" class="stretched-link" target="_blank"></a>
<!-- Some of the items can have icons -->
{{ if eq $item.id "twitter" }}
<h5 class="card-title bi-twitter">
&nbsp;{{ $item.title }}
</h5>
{{ else if eq $item.id "github" }}
<h5 class="card-title bi-github">
&nbsp;{{ $item.title }}
</h5>
{{ else if eq $item.id "youtube" }}
<h5 class="card-title bi-youtube">
&nbsp;{{ $item.title }}
</h5>
{{ else if eq $item.id "zulip" }}
<h5 class="card-title i-zulip">
&nbsp;{{ $item.title }}
</h5>
{{ else if eq $item.id "discourse" }}
<h5 class="card-title i-discourse">
&nbsp;{{ $item.title }}
</h5>
{{ else }}
<h5 class="card-title">
{{ $item.title }}
</h5>
{{ end }}
<p class="card-text">
{{ $item.text }}
</p>
</div>
</div>
</div>
{{ end }}
</div>
<div>
<p>
{{ .Params.email_stmt | markdownify }}
</p>
</div>
</div>
</article>
</div>
</div>
</div>
{{ partial "footer" . }}
</body>
</html>
Loading
Loading