Merge pull request #339 from dairiki/bug.broken-links
Fix a number of broken and stale links
This commit is contained in:
commit
51002aee91
|
@ -12,12 +12,19 @@ on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '23 2 * * *'
|
- cron: '23 2 * * *'
|
||||||
|
|
||||||
jobs:
|
|
||||||
deploy-lektor-website:
|
|
||||||
name: Deploy lektor website
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
env:
|
||||||
DEPLOY: ${{ github.event_name != 'pull_request' }}
|
DEPLOY: >-
|
||||||
|
${{
|
||||||
|
github.event_name != 'pull_request'
|
||||||
|
&&
|
||||||
|
github.ref == 'refs/heads/master'
|
||||||
|
}}
|
||||||
|
OUTPUT: _html
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build lektor website
|
||||||
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
@ -28,10 +35,20 @@ jobs:
|
||||||
python -m pip install --upgrade pip setuptools
|
python -m pip install --upgrade pip setuptools
|
||||||
python -m pip install lektor
|
python -m pip install lektor
|
||||||
|
|
||||||
- run: lektor build
|
- name: Build lektor website
|
||||||
|
run: lektor build -O '${{ env.OUTPUT }}'
|
||||||
|
|
||||||
- run: lektor deploy ghpages-https
|
- name: Check for broken internal links
|
||||||
|
uses: wjdp/htmltest-action@master
|
||||||
|
with:
|
||||||
|
path: ${{ env.OUTPUT }}
|
||||||
|
config: .htmltest.yml
|
||||||
|
skip_external: true
|
||||||
|
log_level: 1
|
||||||
|
|
||||||
|
- name: Deploy lektor website
|
||||||
if: env.DEPLOY == 'true'
|
if: env.DEPLOY == 'true'
|
||||||
|
run: lektor deploy -O '${{ env.OUTPUT }}' ghpages-https
|
||||||
env:
|
env:
|
||||||
LEKTOR_DEPLOY_USERNAME: lektor
|
LEKTOR_DEPLOY_USERNAME: lektor
|
||||||
LEKTOR_DEPLOY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
|
LEKTOR_DEPLOY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
IgnoreAltMissing: true
|
||||||
|
IgnoreURLs:
|
||||||
|
- "^http://localhost:"
|
||||||
|
|
||||||
|
# htmltest does not like quotes around URL in meta refresh
|
||||||
|
CheckMetaRefresh: false
|
||||||
|
# our redirect page doesn't have a doctype
|
||||||
|
CheckDoctype: false
|
|
@ -32,9 +32,9 @@ website:
|
||||||
> stipend, from July-September, to work on Open Source projects of their
|
> stipend, from July-September, to work on Open Source projects of their
|
||||||
> choice.
|
> choice.
|
||||||
|
|
||||||
Lektor was accepted as a particpating project. For more information about
|
Lektor was accepted as a participating project. For more information about
|
||||||
the project there refer to the [project overview on
|
the project there refer to the [project overview on
|
||||||
RGSOC](https://teams.railsgirlssummerofcode.org/projects/115-lektor-cms).
|
RGSOC :ext](https://railsgirlssummerofcode.org/blog/page/36/).
|
||||||
|
|
||||||
We want to make it as easy as possible to work on Lektor during the event which
|
We want to make it as easy as possible to work on Lektor during the event which
|
||||||
is why we will be very flexible with regards to which area interested
|
is why we will be very flexible with regards to which area interested
|
||||||
|
@ -44,3 +44,5 @@ If you are interested in working on Lektor you can reach out to us via
|
||||||
Twitter at [@getlektor](https://twitter.com/getlektor) or
|
Twitter at [@getlektor](https://twitter.com/getlektor) or
|
||||||
<a href="https://gitter.im/lektor/lektor"
|
<a href="https://gitter.im/lektor/lektor"
|
||||||
class="js-gitter-toggle-chat-button">Gitter</a>.
|
class="js-gitter-toggle-chat-button">Gitter</a>.
|
||||||
|
----
|
||||||
|
class: default
|
||||||
|
|
|
@ -37,6 +37,6 @@ Plugins are tagged with specific key words or phrases that describe what they ar
|
||||||
|
|
||||||
I think this is especially useful for plugin development when the tag is an event that the plugin hooks. This allows you to quickly find the source code of plugins that depend on the same Lektor plugin events, so that you can see many quick examples to help you write your own plugin. For instance, you can find all of the plugins that hook the `before-build-all` event by looking at it's tag page [here](/plugins/tag/before-build-all/). Tag pages for events also have links back to the plugin documentation pages, including the page for that specific event.
|
I think this is especially useful for plugin development when the tag is an event that the plugin hooks. This allows you to quickly find the source code of plugins that depend on the same Lektor plugin events, so that you can see many quick examples to help you write your own plugin. For instance, you can find all of the plugins that hook the `before-build-all` event by looking at it's tag page [here](/plugins/tag/before-build-all/). Tag pages for events also have links back to the plugin documentation pages, including the page for that specific event.
|
||||||
|
|
||||||
Now go check out some [plugins](/plugins)!
|
Now go check out some [plugins](/plugins/)!
|
||||||
----
|
----
|
||||||
class: default
|
class: default
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
title: children
|
||||||
|
---
|
||||||
|
summary: Returns a query to the children of a page.
|
||||||
|
---
|
||||||
|
type: property
|
||||||
|
---
|
||||||
|
body:
|
||||||
|
|
||||||
|
[Assets :ref](../) that correspond to directories can have children
|
||||||
|
below them. The `children` attribute provides a convenient way to access
|
||||||
|
those. It returns an iterable of child assets.
|
|
@ -0,0 +1,14 @@
|
||||||
|
title: Asset
|
||||||
|
---
|
||||||
|
summary: Static assets, copied verbatim to the output.
|
||||||
|
---
|
||||||
|
module: lektor.assets
|
||||||
|
---
|
||||||
|
type: class
|
||||||
|
---
|
||||||
|
body:
|
||||||
|
|
||||||
|
Assets are [Source Objects :ref](../obj/) that correspond to static files that
|
||||||
|
are copied verbatim from the `/assets` folder to the output directory.
|
||||||
|
|
||||||
|
Usually, there is no need to manipulate Asset objects directly.
|
|
@ -0,0 +1,13 @@
|
||||||
|
title: get_child
|
||||||
|
---
|
||||||
|
body:
|
||||||
|
|
||||||
|
Lookup a child of the asset. Returns `None` if no child exists with the specified name.
|
||||||
|
|
||||||
|
Naturally, this method always returns `None` unless the asset is a directory.
|
||||||
|
---
|
||||||
|
signature: name, from_url=False
|
||||||
|
---
|
||||||
|
summary: Get child asset
|
||||||
|
---
|
||||||
|
type: method
|
|
@ -17,7 +17,7 @@ of it can create more expressive expressions. `F.name` literally just means
|
||||||
that a field by that name exists and is set to a value.
|
that a field by that name exists and is set to a value.
|
||||||
|
|
||||||
The query syntax is mostly the same in Python as well as in the Jinja 2
|
The query syntax is mostly the same in Python as well as in the Jinja 2
|
||||||
templates, the main difference are [and :ref](../and/) and [or :ref](../or/).
|
templates, the main difference are [and :ref](and/) and [or :ref](or/).
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ relative to the current page and `external` can be used to also add the
|
||||||
domain part to the URL (if configured). The default behavior is to use the
|
domain part to the URL (if configured). The default behavior is to use the
|
||||||
configured URL style (which is `relative`) unless absolute or external were
|
configured URL style (which is `relative`) unless absolute or external were
|
||||||
explicitly provided. For more information read about this in the
|
explicitly provided. For more information read about this in the
|
||||||
[Project Configuration :ref](../../../../project/file/#[project]).
|
[Project Configuration :ref](../../../../project/file/#project).
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ summary: The configured Jinja 2 Environment.
|
||||||
body:
|
body:
|
||||||
|
|
||||||
This object is a configured Jinja2 environment. For more information you can
|
This object is a configured Jinja2 environment. For more information you can
|
||||||
refer to the [Jinja 2 Documentation :ref](http://jinja.pocoo.org/docs/dev/api/#jinja2.Environment).
|
refer to the [Jinja 2 Documentation :ext](https://jinja.palletsprojects.com/en/3.0.x/api/#jinja2.Environment).
|
||||||
|
|
||||||
This is where plugins can inject additional data like custom filters, tests
|
This is where plugins can inject additional data like custom filters, tests
|
||||||
or global functions.
|
or global functions.
|
||||||
|
|
|
@ -14,7 +14,7 @@ method. Here are the parameters and what they mean:
|
||||||
* `name`: this is the name of the template that should be rendered. It's
|
* `name`: this is the name of the template that should be rendered. It's
|
||||||
the local filename relative to the `templates` folder and uses slashes
|
the local filename relative to the `templates` folder and uses slashes
|
||||||
for paths.
|
for paths.
|
||||||
* `pad`: when a [Pad :ref](../../pad/) is available, it should be provided
|
* `pad`: when a [Pad :ref](../../db/pad/) is available, it should be provided
|
||||||
so that the `site` variable can be populated. If a context is available
|
so that the `site` variable can be populated. If a context is available
|
||||||
then the pad will also be pulled from the context if needed.
|
then the pad will also be pulled from the context if needed.
|
||||||
* `this`: the value of the `this` variable in templates. This should always
|
* `this`: the value of the `this` variable in templates. This should always
|
||||||
|
|
|
@ -20,7 +20,7 @@ The parameters to the function are as follows:
|
||||||
|
|
||||||
* `target_url`: a URL object with the parsed URL. This object comes from the
|
* `target_url`: a URL object with the parsed URL. This object comes from the
|
||||||
Werkzeug library and gives access to the individual parts of a URL by the
|
Werkzeug library and gives access to the individual parts of a URL by the
|
||||||
exposed attributes ([Read about the URL object :ext](http://werkzeug.pocoo.org/docs/0.11/urls/)).
|
exposed attributes ([Read about the URL object :ext](https://werkzeug.palletsprojects.com/en/2.0.x/urls/)).
|
||||||
* `credentials`: an optional dictionary with command line supplied credentials.
|
* `credentials`: an optional dictionary with command line supplied credentials.
|
||||||
Note that these credentials might be completely absent and the keys which are
|
Note that these credentials might be completely absent and the keys which are
|
||||||
provided might change with future versions of Lektor.
|
provided might change with future versions of Lektor.
|
||||||
|
|
|
@ -5,4 +5,4 @@ summary: Filters specific to Lektor that templates have access to.
|
||||||
body:
|
body:
|
||||||
|
|
||||||
These is the list of custom filters added by Lektor in addition to the
|
These is the list of custom filters added by Lektor in addition to the
|
||||||
[built in filters :ext](http://jinja.pocoo.org/docs/dev/templates/#builtin-filters).
|
[built in filters :ext](https://jinja.palletsprojects.com/en/3.0.x/templates/#list-of-builtin-filters).
|
||||||
|
|
|
@ -10,7 +10,7 @@ body:
|
||||||
|
|
||||||
In some situations it can be very useful to generate a unique ID in templates.
|
In some situations it can be very useful to generate a unique ID in templates.
|
||||||
This is particularly useful when creating templates for the [Flow
|
This is particularly useful when creating templates for the [Flow
|
||||||
:ref](../../../../flow/) system and you need unique IDs for the DOM.
|
:ref](../../../../content/flow/) system and you need unique IDs for the DOM.
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ width and/or height, and the operation mode.
|
||||||
In the default mode, if width or height are `None`, they are calculated
|
In the default mode, if width or height are `None`, they are calculated
|
||||||
from the source image's dimensions so that the image is scaled proportionally.
|
from the source image's dimensions so that the image is scaled proportionally.
|
||||||
|
|
||||||
Used internally for the implementation of [thumbnail :ref](../../db/record/thumbnail), and exposed as an API for image-processing plugins.
|
Used internally for the implementation of [thumbnail :ref](../../db/record/thumbnail/), and exposed as an API for image-processing plugins.
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
|
|
|
@ -103,7 +103,7 @@ to be configured.
|
||||||
|
|
||||||
You can pick the default for URL generation in the project configuration.
|
You can pick the default for URL generation in the project configuration.
|
||||||
For more information read about the [Project Configuration
|
For more information read about the [Project Configuration
|
||||||
:ref](../../project/file/#[project]).
|
:ref](../../project/file/#project).
|
||||||
|
|
||||||
The default of `relative`, a relative URL style, means that you can deploy a
|
The default of `relative`, a relative URL style, means that you can deploy a
|
||||||
website to a sub folder without any configuration, however most likely custom
|
website to a sub folder without any configuration, however most likely custom
|
||||||
|
|
|
@ -5,7 +5,7 @@ summary: Deploys to GitLab Pages.
|
||||||
body:
|
body:
|
||||||
|
|
||||||
[GitLab](https://gitlab.com/) supports Lektor on their [GitLab
|
[GitLab](https://gitlab.com/) supports Lektor on their [GitLab
|
||||||
Pages](http://doc.gitlab.com/ee/pages/) infrastructure. Effectively
|
Pages](https://docs.gitlab.com/ee/user/project/pages/) infrastructure. Effectively
|
||||||
GitLab can build your website out of any repository on GitLab and hosts it
|
GitLab can build your website out of any repository on GitLab and hosts it
|
||||||
up on either a subdomain or a custom domain (including SSL).
|
up on either a subdomain or a custom domain (including SSL).
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ pages:
|
||||||
If you want to use a [CNAME :ext](https://en.wikipedia.org/wiki/CNAME) with
|
If you want to use a [CNAME :ext](https://en.wikipedia.org/wiki/CNAME) with
|
||||||
GitLab pages you can configure it in the GitLab settings:
|
GitLab pages you can configure it in the GitLab settings:
|
||||||
|
|
||||||
* [Configure CNAME](http://doc.gitlab.com/ee/pages/#add-a-custom-domain-to-your-pages-website)
|
* [Configure CNAME](https://docs.gitlab.com/ee/user/project/pages/custom_domains_ssl_tls_certification/#set-up-pages-with-a-custom-domain)
|
||||||
|
|
||||||
## SSL/TLS Support
|
## SSL/TLS Support
|
||||||
|
|
||||||
|
@ -98,7 +98,7 @@ If you have an SSL certificate and a custom domain, you can upload your private
|
||||||
key and certificate to GitLab and SSL will become available on your custom
|
key and certificate to GitLab and SSL will become available on your custom
|
||||||
domain as well.
|
domain as well.
|
||||||
|
|
||||||
* [Configure SSL/TLS](http://doc.gitlab.com/ee/pages/#secure-your-custom-domain-website-with-tls)
|
* [Configure SSL/TLS](https://docs.gitlab.com/ee/user/project/pages/custom_domains_ssl_tls_certification/#adding-an-ssltls-certificate-to-pages)
|
||||||
|
|
||||||
## 404 Pages
|
## 404 Pages
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@ from the last build.
|
||||||
Note that because sitemaps need to have external URLs (with scheme and
|
Note that because sitemaps need to have external URLs (with scheme and
|
||||||
everything) you will need to configure the `url` of the site before the
|
everything) you will need to configure the `url` of the site before the
|
||||||
template starts working. For more information see [Project File
|
template starts working. For more information see [Project File
|
||||||
:ref](../../project/file/#[project])
|
:ref](../../project/file/#project)
|
||||||
|
|
||||||
## Human Readable Sitemap
|
## Human Readable Sitemap
|
||||||
|
|
||||||
|
|
|
@ -81,7 +81,7 @@ So going line by line, these are what the things mean:
|
||||||
is your plugin name with underscores instead of dashes as separators.
|
is your plugin name with underscores instead of dashes as separators.
|
||||||
If you need more than one module you should use a package instead. This is
|
If you need more than one module you should use a package instead. This is
|
||||||
not covered here, but you can find this in the [setuptools documentation
|
not covered here, but you can find this in the [setuptools documentation
|
||||||
:ext](https://pythonhosted.org/setuptools/).
|
:ext](https://setuptools.pypa.io/en/latest/).
|
||||||
* `entry_points`: this is meta data that is needed to associate our package
|
* `entry_points`: this is meta data that is needed to associate our package
|
||||||
with Lektor. Lektor will load all plugins in the `lektor.plugins` list.
|
with Lektor. Lektor will load all plugins in the `lektor.plugins` list.
|
||||||
It can be a list of definitions in the form `plugin-name = import_path`.
|
It can be a list of definitions in the form `plugin-name = import_path`.
|
||||||
|
|
|
@ -117,7 +117,7 @@ function we also track the plugin's filename to rebuild if the plugin changes.
|
||||||
Let's say you want to add an "asciidoc"
|
Let's say you want to add an "asciidoc"
|
||||||
[field type :ref](../../api/db/types/) so you can write with [AsciiDoc](http://www.methods.co.nz/asciidoc) markup.
|
[field type :ref](../../api/db/types/) so you can write with [AsciiDoc](http://www.methods.co.nz/asciidoc) markup.
|
||||||
|
|
||||||
First [install AsciiDoc](http://www.methods.co.nz/asciidoc/INSTALL.html) so its command-line program is available. Then update `blog-post.ini` from the [blog guide :ref](../../guides/blog) like so:
|
First [install AsciiDoc](http://www.methods.co.nz/asciidoc/INSTALL.html) so its command-line program is available. Then update `blog-post.ini` from the [blog guide :ref](../../guides/blog/) like so:
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
[fields.body]
|
[fields.body]
|
||||||
|
|
|
@ -86,7 +86,7 @@ credentials for `pypi`. Next time it will have remembered them.
|
||||||
|
|
||||||
### Guide
|
### Guide
|
||||||
|
|
||||||
We'd love to see your new plugin listed on [our plugins page :ref](/plugins). To do that, submit a pull request to [this repository :ext](https://github.com/lektor/lektor-website) that adds your plugin as a sub-page of /plugins. To have your plugin page look it's best and be found more easily here and on [PyPI :ext](https://pypi.org/), please [fill out your setup.py :ext](https://packaging.python.org/tutorials/distributing-packages/) completely (as in [the above snippet :ref](/docs/plugins/publishing/#enhance-your-setup.py)), including
|
We'd love to see your new plugin listed on [our plugins page :ref](/plugins/). To do that, submit a pull request to [this repository :ext](https://github.com/lektor/lektor-website) that adds your plugin as a sub-page of /plugins. To have your plugin page look it's best and be found more easily here and on [PyPI :ext](https://pypi.org/), please [fill out your setup.py :ext](https://packaging.python.org/tutorials/distributing-packages/) completely (as in [the above snippet :ref](/docs/plugins/publishing/#enhance-your-setup.py)), including
|
||||||
|
|
||||||
* `author` and `author_email`
|
* `author` and `author_email`
|
||||||
* `classifiers`, (optional) such as
|
* `classifiers`, (optional) such as
|
||||||
|
|
|
@ -12,7 +12,7 @@ the command line client which is the recommended way to do development until
|
||||||
the website is ready for end user management.
|
the website is ready for end user management.
|
||||||
|
|
||||||
If you do not have the `lektor` [command line executable :ref](../cli/)
|
If you do not have the `lektor` [command line executable :ref](../cli/)
|
||||||
available yet just consult the [Installation :ref](../installation) section of
|
available yet just consult the [Installation :ref](../installation/) section of
|
||||||
the documentation.
|
the documentation.
|
||||||
|
|
||||||
## Creating a New Project
|
## Creating a New Project
|
||||||
|
|
|
@ -14,7 +14,7 @@ Just like [images](../imageops/), videos are separate files that are embedded in
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
```
|
```
|
||||||
|
|
||||||
Just like images you can also access them using `site.get('/myfolder').attachments.videos` or `site.get('/myfolder').attachments.get('examplevideo.mp4')`. Note that not all formats are detected as videos (see [attachments](../../content/attachments/)). If your format is not in the list you may still be able to get it detected as a video by adding it to your [Lektor project file](../../project/file/#[attachment_types]).
|
Just like images you can also access them using `site.get('/myfolder').attachments.videos` or `site.get('/myfolder').attachments.get('examplevideo.mp4')`. Note that not all formats are detected as videos (see [attachments](../../content/attachments/)). If your format is not in the list you may still be able to get it detected as a video by adding it to your [Lektor project file](../../project/file/#attachment-types).
|
||||||
|
|
||||||
|
|
||||||
## Accessing metadata
|
## Accessing metadata
|
||||||
|
|
|
@ -38,7 +38,10 @@ a particular theme.
|
||||||
!!!! Not implemented yet.
|
!!!! Not implemented yet.
|
||||||
|
|
||||||
You could add the `themes` variable to the `.lektorproject` file and Lektor will
|
You could add the `themes` variable to the `.lektorproject` file and Lektor will
|
||||||
search in the [community themes](/themes) and automatically install it.
|
search in the
|
||||||
|
<!-- FIXME: use this link when theme showcase exists [community themes](/themes/) -->
|
||||||
|
[community themes :ext](https://github.com/lektor/lektor-themes)
|
||||||
|
and automatically install it.
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
[project]
|
[project]
|
||||||
|
|
|
@ -8,7 +8,7 @@ body:
|
||||||
|
|
||||||
!!!! Not implemented yet.
|
!!!! Not implemented yet.
|
||||||
|
|
||||||
Themes could depend on [plugins](../../plugins), and they will be loaded along
|
Themes could depend on [plugins](../../plugins/), and they will be loaded along
|
||||||
the theme.
|
the theme.
|
||||||
|
|
||||||
1. You could use the `[packages]` section of the `theme.ini` to install
|
1. You could use the `[packages]` section of the `theme.ini` to install
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
body:
|
body:
|
||||||
|
|
||||||
#### text-block ####
|
#### text-block ####
|
||||||
text: These plugins primarily deal with Lektor's [Templates :ref](/docs/templates/). They may add or modify [context :ref](docs/templates/#template-context), [api :ref](/docs/api/templates/), [filters :ref](/docs/api/templates/filters/), [globals :ref](/docs/api/templates/globals/), [modify images :ref](/docs/templates/imageops/), [change navigation :ref](/docs/templates/navigation/), or many other functionalities available to templates.
|
text: These plugins primarily deal with Lektor's [Templates :ref](/docs/templates/). They may add or modify [context :ref](/docs/templates/#template-context), [api :ref](/docs/api/templates/), [filters :ref](/docs/api/templates/filters/), [globals :ref](/docs/api/templates/globals/), [modify images :ref](/docs/templates/imageops/), [change navigation :ref](/docs/templates/navigation/), or many other functionalities available to templates.
|
||||||
----
|
----
|
||||||
class: default
|
class: default
|
||||||
---
|
---
|
||||||
|
|
|
@ -9,7 +9,7 @@ text:
|
||||||
|
|
||||||
Lektor is a young project but it has a growing list of both official and community supported plugins. Official plugins are maintained by Lektor and kept in good shape together with the rest of the project. Community plugins are moderated and updated regularly, but they might not keep pace with development on Lektor. They are maintained by the community. Install them with `lektor plugins add NAME`.
|
Lektor is a young project but it has a growing list of both official and community supported plugins. Official plugins are maintained by Lektor and kept in good shape together with the rest of the project. Community plugins are moderated and updated regularly, but they might not keep pace with development on Lektor. They are maintained by the community. Install them with `lektor plugins add NAME`.
|
||||||
|
|
||||||
If you want to make or publish your own plugin, or see our [docs :ref](/docs/plugins).
|
If you want to make or publish your own plugin, or see our [docs :ref](/docs/plugins/).
|
||||||
|
|
||||||
(*) Asterisks denote official plugins.
|
(*) Asterisks denote official plugins.
|
||||||
----
|
----
|
||||||
|
|
|
@ -1,27 +1,27 @@
|
||||||
[download]
|
[download]
|
||||||
path = /downloads
|
path = /downloads/
|
||||||
label = Download
|
label = Download
|
||||||
|
|
||||||
[docs]
|
[docs]
|
||||||
path = /docs
|
path = /docs/
|
||||||
label = Documentation
|
label = Documentation
|
||||||
|
|
||||||
[poweredby]
|
[poweredby]
|
||||||
path = /showcase
|
path = /showcase/
|
||||||
label = Showcase
|
label = Showcase
|
||||||
|
|
||||||
[plugins]
|
[plugins]
|
||||||
path = /plugins
|
path = /plugins/
|
||||||
label = Plugins
|
label = Plugins
|
||||||
|
|
||||||
# [themes]
|
# [themes]
|
||||||
# path = /themes
|
# path = /themes/
|
||||||
# label = Themes
|
# label = Themes
|
||||||
|
|
||||||
[community]
|
[community]
|
||||||
path = /community
|
path = /community/
|
||||||
label = Community
|
label = Community
|
||||||
|
|
||||||
[blog]
|
[blog]
|
||||||
path = /blog
|
path = /blog/
|
||||||
label = Blog
|
label = Blog
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
{% block blog_body %}
|
{% block blog_body %}
|
||||||
<h1>The Transcript Archive</h1>
|
<h1>The Transcript Archive</h1>
|
||||||
<p>
|
<p>
|
||||||
<a href="{{ '/blog'|url }}">« back to the blog</a>
|
<a href="{{ '/blog/'|url }}">« back to the blog</a>
|
||||||
<p>
|
<p>
|
||||||
There have been posts in the following years:
|
There have been posts in the following years:
|
||||||
<ul>
|
<ul>
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if this.template_var %}
|
{% if this.template_var %}
|
||||||
<li>Template variable: <a href="{{ (
|
<li>Template variable: <a href="{{ (
|
||||||
'/docs/api/templates/globals/' ~ this.template_var|lower ~ '/')|url
|
'/docs/api/templates/globals/' ~ this.template_var|lower|replace('_', '-') ~ '/')|url
|
||||||
}}"><code>{{ this.template_var }}</code></a></li>
|
}}"><code>{{ this.template_var }}</code></a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if this.version_added %}
|
{% if this.version_added %}
|
||||||
|
@ -53,11 +53,14 @@
|
||||||
|
|
||||||
{{ this.body }}
|
{{ this.body }}
|
||||||
{% if this.parent._slug == 'events' %}
|
{% if this.parent._slug == 'events' %}
|
||||||
|
{% if this._slug in site.query('/plugins').distinct('tags') %}
|
||||||
<br>
|
<br>
|
||||||
<p>
|
<p>
|
||||||
<a href="{{ ('/plugins/tag/' ~ this._slug ~ '/')|url }}" class="ref">Plugins That Use This Event</a>
|
A list of some plugins that make use of this event is available
|
||||||
|
<a href="{{ ('/plugins/tag/' ~ this._slug ~ '/')|url }}" class="ref">here</a>.
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% if this.version_history %}
|
{% if this.version_history %}
|
||||||
<div class="version-info version-info-collapsed">
|
<div class="version-info version-info-collapsed">
|
||||||
|
|
|
@ -68,8 +68,8 @@
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<a href="{{ '/license'|url }}">License & Copyright</a> •
|
<a href="{{ '/license/'|url }}">License & Copyright</a> •
|
||||||
<a href="{{ '/contact'|url }}">Contact</a> •
|
<a href="{{ '/contact/'|url }}">Contact</a> •
|
||||||
Made with <i class="fa fa-fw fa-heart" title="Heart"><span hidden>Heart</span></i> in Carinthia
|
Made with <i class="fa fa-fw fa-heart" title="Heart"><span hidden>Heart</span></i> in Carinthia
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -12,11 +12,11 @@
|
||||||
Take a look at their source code to see how they work!
|
Take a look at their source code to see how they work!
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<a href="{{ '/docs/plugins'|url }}" class="ref">Intro to Plugins</a>
|
<a href="{{ '/docs/plugins/'|url }}" class="ref">Intro to Plugins</a>
|
||||||
||
|
||
|
||||||
<a href="{{ '/docs/cli/plugins/'|url }}" class="ref">Plugin Commands</a>
|
<a href="{{ '/docs/cli/plugins/'|url }}" class="ref">Plugin Commands</a>
|
||||||
||
|
||
|
||||||
<a href="{{ '/docs/api/plugins'|url }}" class="ref">Plugin API</a>
|
<a href="{{ '/docs/api/plugins/'|url }}" class="ref">Plugin API</a>
|
||||||
||
|
||
|
||||||
<a href="{{ event|url }}" class="ref">This Event</a>
|
<a href="{{ event|url }}" class="ref">This Event</a>
|
||||||
</p>
|
</p>
|
||||||
|
@ -30,6 +30,6 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p>View a list of all Lektor plugin tags
|
<p>View a list of all Lektor plugin tags
|
||||||
<a href="{{ '/plugins/tags'|url }}" class="ref">here</a>.
|
<a href="{{ '/plugins/tags/'|url }}" class="ref">here</a>.
|
||||||
</p>
|
</p>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -69,7 +69,7 @@
|
||||||
<p>Plugin has no tags.</p>
|
<p>Plugin has no tags.</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<p>
|
<p>
|
||||||
View <a href="{{ '/plugins/tags'|url }}" class="ref">all tags</a>.
|
View <a href="{{ '/plugins/tags/'|url }}" class="ref">all tags</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,6 @@
|
||||||
Plugins are also tagged with keywords and topics.
|
Plugins are also tagged with keywords and topics.
|
||||||
Their tags are listed on their page and are navigable.
|
Their tags are listed on their page and are navigable.
|
||||||
You can view a list of all of the tags
|
You can view a list of all of the tags
|
||||||
<a href="{{ '/plugins/tags'|url }}" class="ref">here</a>.
|
<a href="{{ '/plugins/tags/'|url }}" class="ref">here</a>.
|
||||||
</p>
|
</p>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue