File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ There the hacker's favorite projects like
43
43
[ Pelican] ( https://github.com/getpelican/pelican ) or
44
44
[ Jekyll] ( https://jekyllrb.com/ ) which support generating websites out of static
45
45
files that are tracked through version control and there are CMS systems like
46
- [ Statamic] ( http://statamic.com/ ) which store all of it's data in flat files
46
+ [ Statamic] ( http://statamic.com/ ) which store all of its data in flat files
47
47
— but as mentioned — needs PHP.
48
48
49
49
None of those were what I was looking for. Static file generators like Jekyll
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ text:
117
117
118
118
## Open Source
119
119
120
- Lektor at it's core is a three clause [ BSD licensed
120
+ Lektor at its core is a three clause [ BSD licensed
121
121
] ( https://raw.githubusercontent.com/lektor/lektor/master/LICENSE ) Open Source
122
122
project written in Python and Node.js.
123
123
----
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ For configuration you can define which blocks are allowed by setting the
20
20
that are allowed. If not defined, all flow blocks become available.
21
21
22
22
The text format for flow blocks in the ` contents.lr ` file looks a bit more
23
- complex because of it's nested nature, but in essence it's this:
23
+ complex because of its nested nature, but in essence it's this:
24
24
25
25
```
26
26
#### name-of-flow-block ####
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ summary: Provides access to a project file.
9
9
body:
10
10
11
11
The project class is one of the most basic classes that Lektor uses to
12
- implement it's building process. It's generated very early on when the
12
+ implement its building process. It's generated very early on when the
13
13
application needs to interact with the project file on disk. This
14
14
class is mostly useful for building scripts that use the Lektor API and
15
15
not so much in other situations as it's not directly playing a role in
Original file line number Diff line number Diff line change 7
7
Flow is a system in Lektor that allows you to have higher flexibility when
8
8
creating pages. The [ Flow Type : ref ] ( ../../api/db/types/flow/ ) field type
9
9
that allows you to store multiple different formats of data within the same
10
- field each with it's own template.
10
+ field each with its own template.
11
11
12
12
This allows you to build complex pages made from individual components.
13
13
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ URL which can be customized. They are roughly speaking something like a
15
15
file name. For instance ` foo-bar ` can be a slug in ` /foo-bar/ ` . The default
16
16
slug of a page is the ID of the page. So if you have a page called
17
17
` /foo/bar/contents.lr ` then the default slug is ` bar ` . As you can see the
18
- full URL is comprised of it's own slug concatenated with all the slugs of
18
+ full URL is comprised of its own slug concatenated with all the slugs of
19
19
all parents.
20
20
21
21
Can a slug contain slashes? Yes indeed it can. A slug is free to contain
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ summary: Enabling disqus comments in one minute.
5
5
body:
6
6
7
7
The ` disqus-comments ` plugin adds support for Disqus comments to Lektor and
8
- with it's help you can have comments on your pages in no time. Once the plugin
8
+ with its help you can have comments on your pages in no time. Once the plugin
9
9
is enabled a ` render_disqus_comments ` function is available for templates which
10
10
can render a disqus comment box. All you need to do for this is to create your
11
11
own Disqus community at [ Disqus Engage : ext ] ( https://publishers.disqus.com/engage ) .
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ Models have the following options that can customize the model itself:
86
86
- ` hidden ` : a boolean value that indicates if the model should be hidden from
87
87
the UI or not. If set to ` yes ` then new pages cannot select this model.
88
88
This is very useful for models that are implied through configuration.
89
- - ` protected ` : if a model is set to protected then all of it's instances
89
+ - ` protected ` : if a model is set to protected then all of its instances
90
90
cannot be deleted once created.
91
91
- ` inherits ` : if you want to inherit all fields from another model then this
92
92
can be set to the name of another model.
You can’t perform that action at this time.
0 commit comments