-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lektor doesn't work with recent Python dependencies. This should be easier to work with. See: #19
- Loading branch information
1 parent
e583167
commit f3e8346
Showing
36 changed files
with
270 additions
and
267 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 +1,4 @@ | ||
.venv | ||
.hugo_build.lock | ||
/public/ | ||
/resources/ | ||
/static/style.css |
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,10 +1,10 @@ | ||
# meta | ||
Issue tracker for organizational matters and website | ||
|
||
[![Build Status](https://travis-ci.org/pimutils/meta.svg?branch=master)](https://travis-ci.org/pimutils/meta) | ||
Issue tracker for organizational matters and website | ||
|
||
## pimutils.org | ||
|
||
The pimutils website is a [Lektor](https://www.getlektor.com/) project. After installing Lektor you should be able to run the admin interface using ``lektor server``. Pushing your changes to master will automatically deploy via Travis to GitHub pages. | ||
The pimutils website is a [hugo](https://gohugo.io/) project. After | ||
installing hugo you should be able to run it using `hugo serve`. | ||
|
||
The DNS is managed via Markus Unterwaditzer's (@untitaker) private accounts. |
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,86 @@ | ||
body { | ||
font-family: "Open Sans", sans-serif; | ||
margin: 50px 0; | ||
} | ||
|
||
a { | ||
color: #33ba24; | ||
} | ||
|
||
a:hover { | ||
color: #21e00d; | ||
} | ||
|
||
header { | ||
background: #1e2e1c; | ||
color: #efefef; | ||
font-family: monospace; | ||
|
||
h1 { | ||
font-size: 2.7rem; | ||
font-weight: normal; | ||
margin: 0; | ||
} | ||
|
||
nav ul { | ||
list-style: none; | ||
margin: 0.4rem 0 0 0; | ||
padding: 0; | ||
|
||
li { | ||
display: inline; | ||
margin: 0 8px 0 0; | ||
padding: 0; | ||
} | ||
} | ||
|
||
a { | ||
font-size: 1rem; | ||
} | ||
} | ||
|
||
header, | ||
footer { | ||
padding: 20px 30px; | ||
} | ||
|
||
header, | ||
footer, | ||
p, | ||
ul, | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
.blog-post { | ||
max-width: 760px; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
h1, | ||
h2 { | ||
font-weight: normal; | ||
} | ||
|
||
article { | ||
h1, | ||
h2, | ||
h3, | ||
h4 { | ||
a { | ||
color: black; | ||
text-decoration: none; | ||
} | ||
a:hover { | ||
color: black; | ||
text-decoration: underline; | ||
} | ||
} | ||
} | ||
|
||
article { | ||
li { | ||
margin-left: 1rem; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
pimutils is a suite of programs for managing contacts, calendars and tasks on the command line. | ||
|
||
* [khal](https://github.com/pimutils/khal) is a command line interface calendar application | ||
* [todoman](https://github.com/pimutils/todoman) is a command line interface tasks manager | ||
* [vdirsyncer](https://github.com/pimutils/vdirsyncer) can synchronize calendar data, including data from khal and todoman |
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,11 @@ | ||
--- | ||
layout: post | ||
title: Hello Website | ||
date: 2017-02-20 | ||
categories: blog | ||
url: /blog/first-post/ | ||
params: | ||
author: The pimutils members | ||
--- | ||
|
||
This is an example blog post. Not much here but that's not the point :) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,15 +1,14 @@ | ||
_model: page | ||
--- | ||
title: Contact | ||
permalink: /contact/ | ||
--- | ||
body: | ||
|
||
### GitHub issues | ||
## GitHub issues | ||
|
||
For development coordination and questions, please use the GitHub issue | ||
trackers listed on the [home page](/). | ||
|
||
|
||
For conversations of private and *urgent* nature (such as security issues or | ||
violations of the [CoC](/coc/)) please write to `[email protected]`. | ||
|
@@ -18,7 +17,7 @@ Geier](https://github.com/geier), [Hugo Osvaldo | |
Barrera](https://whynothugo.nl) and [Markus | ||
Unterwaditzer](https://github.com/untitaker/). | ||
|
||
### IRC | ||
## IRC | ||
|
||
While GitHub issues are our primary way to coordinate development, we also use | ||
IRC for off-topic chatter, or when communication needs to happen in real-time. | ||
|
This file was deleted.
Oops, something went wrong.
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,23 @@ | ||
--- | ||
title: Thanks | ||
permalink: /thanks/ | ||
--- | ||
|
||
## Fastmail | ||
|
||
![Fastmail's logo](/static/fastmail-badge.png) | ||
|
||
**[Fastmail]** is a paid, hosted email provider with address book and calendar | ||
functionality. They use [Cyrus IMAP] and provide us with a free account with | ||
which we run our vdirsyncer test suite. Thanks! | ||
|
||
[FastMail]: https://www.fastmail.com/ | ||
[Cyrus IMAP]: https://www.cyrusimap.org/ | ||
|
||
## Packagecloud | ||
|
||
![Packagecloud's logo](/static/packagecloud-badge.png) | ||
|
||
**[Packagecloud](https://packagecloud.io/)** is a service to host all kinds of | ||
package repositories. We use their open source plan to host our Debian packages | ||
for vdirsyncer. Thanks! |
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
baseURL: 'https://pimutils.org/' | ||
languageCode: 'en-gb' | ||
title: 'pimutils: utilities for personal information management' | ||
|
||
taxonomies: | ||
author: authors | ||
tag: tags |
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 @@ | ||
<h{{ .Level }} id="{{ .Anchor | safeURL }}"><a href="#{{ .Anchor | safeURL }}">{{ .Text | safeHTML }}</a></h{{ .Level }}> |
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,42 @@ | ||
<!doctype html> | ||
|
||
<html lang="{{ .Site.LanguageCode }}"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<title>{{ partial "title.html" $ }}</title> | ||
|
||
<link rel="canonical" href="{{ .Permalink }}" /> | ||
|
||
<!-- TODO: feed must be in feed.xml for backwards compat --> | ||
{{ with .OutputFormats.Get "rss" -}} {{ printf ` | ||
<link rel="%s" type="%s" href="%s" title="%s" /> | ||
` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ end -}} {{ | ||
$style := resources.Get "main.scss" | resources.ToCSS | resources.Minify | | ||
resources.Fingerprint }} | ||
<link rel="stylesheet" href="{{ $style.RelPermalink }}" /> | ||
</head> | ||
|
||
<body class="{{ .Kind }}"> | ||
<header> | ||
<h1>pimutils</h1> | ||
<nav> | ||
<ul> | ||
<li><a href="/">Home</a></li> | ||
<li><a href="/thanks/">Thanks</a></li> | ||
<li><a href="/contact/">Contact</a></li> | ||
<li><a href="/blog/">Blog</a></li> | ||
<li><a href="/coc/">Code of Conduct</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
{{ block "main" . }} Content for each page will end up here. {{ end }} | ||
|
||
<footer> | ||
Copyright © 2017-2024 | ||
<a href="/contact/">the pimutils members</a>. | ||
</footer> | ||
</body> | ||
</html> |
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,8 @@ | ||
{{ define "main" }} | ||
<h1>{{ .Title }}</h1> | ||
|
||
<article> | ||
{{ .Content }} | ||
</article> | ||
|
||
{{ end }} |
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,20 @@ | ||
{{ define "main" }} | ||
|
||
<section class="article-list"> | ||
{{ range (where .Site.RegularPages "Section" "blog") }} | ||
<div class="blog-post"> | ||
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2> | ||
<div> | ||
Written by {{ .Params.Author }} on | ||
<time datetime="{{.Date.Format "2006-01-02"}}"> | ||
{{ .Date.Format "2006-01-02" }} | ||
</time> | ||
</div> | ||
|
||
{{ .Content }} | ||
|
||
</div> | ||
{{ end }} | ||
</section> | ||
|
||
{{ end }} |
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,4 @@ | ||
{{ define "main" }} | ||
<h1>Utilities for personal information management</h1> | ||
{{ .Content }} | ||
{{ end }} |
Oops, something went wrong.