/
githubmirror
/
jekyll
Обзор
Документация
Войти
/
githubmirror
/
jekyll
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/_data/jekyll_variables.yml
223 строки
11 KB
Seth Louis
Fix grammar in the description of `page.excerpt` variable (#9689)
22 сен 2024, 21:01
Не верифицирован
22 сен 2024, 21:01
27805c9
Код
Авторство
О чём код?
# Variables provided by Jekyll core # # name: : name of the variable # description: : content returned by the variable global: - name: site description: >- Site wide information + configuration settings from <code>_config.yml</code>. See below for details. - name: page description: >- Page specific information + the <a href="/docs/front-matter/">front matter</a>. Custom variables set via the front matter will be available here. See below for details. - name: layout description: >- Layout specific information + the <a href="/docs/front-matter/">front matter</a>. Custom variables set via front matter in layouts will be available here. - name: jekyll description: >- Jekyll-centric information will be available here. See below for details. - name: theme description: >- Theme-gem specific information as defined in the theme's gemspec. Useful for rendering information in the theme demo's "About" page, for example. See below for details. - name: content description: >- In layout files, the rendered content of the Post or Page being wrapped. Not defined in Post or Page files. - name: paginator description: >- When the <code>paginate</code> configuration option is set, this variable becomes available for use. See <a href="../pagination/">Pagination</a> for details. site: - name: site.time description: >- The current time (when you run the <code>jekyll</code> command). - name: site.pages description: >- A list of all Pages. - name: site.posts description: >- A reverse chronological list of all Posts. - name: site.related_posts description: >- If the page being processed is a Post, this contains a list of up to ten related Posts. By default, these are the ten most recent posts. For high quality but slow to compute results, run the <code>jekyll</code> command with the <code>--lsi</code> (<a href="https://en.wikipedia.org/wiki/Latent_semantic_analysis#Latent_semantic_indexing">latent semantic indexing</a>) option. Also note GitHub Pages does not support the <code>lsi</code> option when generating sites. - name: site.static_files description: >- A list of all <a href="/docs/static-files/">static files</a> (i.e. files not processed by Jekyll's converters or the Liquid renderer). Each file has five properties: <code>path</code>, <code>modified_time</code>, <code>name</code>, <code>basename</code> and <code>extname</code>. - name: site.html_pages description: >- A subset of <code>site.pages</code> listing those which end in <code>.html</code>. - name: site.html_files description: >- A subset of <code>site.static_files</code> listing those which end in <code>.html</code>. - name: site.collections description: >- A list of all the collections (including posts). - name: site.data description: >- A list containing the data loaded from the YAML files located in the <code>_data</code> directory. - name: site.documents description: >- A list of all the documents in every collection. - name: site.categories.CATEGORY description: >- The list of all Posts in category <code>CATEGORY</code>. - name: site.tags.TAG description: >- The list of all Posts with tag <code>TAG</code>. - name: site.url description: >- Contains the url of your site as it is configured in the <code>_config.yml</code>. For example, if you have <code>url: http://mysite.com</code> in your configuration file, then it will be accessible in Liquid as <code>site.url</code>. For the development environment there is <a href="/news/2016/10/06/jekyll-3-3-is-here/#3-siteurl-is-set-by-the-development-server">an exception</a>, if you are running <code>jekyll serve</code> in a development environment <code>site.url</code> will be set to the value of <code>host</code>, <code>port</code>, and SSL-related options. This defaults to <code>url: http://localhost:4000</code>. - name: "site.[CONFIGURATION_DATA]" description: >- All the variables set via the command line and your <code>_config.yml</code> are available through the <code>site</code> variable. For example, if you have <code>foo: bar</code> in your configuration file, then it will be accessible in Liquid as <code>site.foo</code>. Jekyll does not parse changes to <code>_config.yml</code> in <code>watch</code> mode, you must restart Jekyll to see changes to variables. page: - name: page.content description: >- The content of the Page, rendered or un-rendered depending upon what Liquid is being processed and what <code>page</code> is. - name: page.title description: >- The title of the Page or Document resource. - name: page.excerpt description: >- The un-rendered excerpt of a Page or Document. Can be overridden in the <a href="/docs/front-matter/">front matter</a>. It can either be disabled atomically for certain page or document by setting an empty string to an <code>excerpt_separator</code> key in the front matter of desired resource or disabled site-wide by setting the same as a top-level key in the config file. - name: page.url description: >- The URL of the Post without the domain, but with a leading slash, e.g. <code>/2008/12/14/my-post.html</code> - name: page.date description: >- The Date assigned to the Post. This can be overridden in a Post's front matter by specifying a new date/time in the format <code>YYYY-MM-DD HH:MM:SS</code> (assuming UTC), or <code>YYYY-MM-DD HH:MM:SS +/-TTTT</code> (to specify a time zone using an offset from UTC. e.g. <code>2008-12-14 10:30:00 +0900</code>). Not applicable to Pages. - name: page.id description: >- An identifier unique to a document in a Collection or a Post (useful in RSS feeds). e.g. <code>/2008/12/14/my-post</code><code>/my-collection/my-document</code>. Not applicable to Pages. - name: page.categories description: >- The list of categories to which this post belongs. Categories are derived from the directory structure above the <code>_posts</code> directory. For example, a post at <code>/work/code/_posts/2008-12-24-closures.md</code> would have this field set to <code>['work', 'code']</code>. These can also be specified in the <a href="/docs/front-matter/">front matter</a>. Note: Path-based categories may not work for documents in user-defined collections. - name: page.collection description: >- The label of the collection to which a Document belongs. e.g. <code>posts</code> for a post, or <code>puppies</code> for a document at path <code>_puppies/rover.md</code>. If not part of a collection, an empty string is returned. - name: page.tags description: >- The list of tags to which this post belongs. These can be specified in the <a href="/docs/front-matter/">front matter</a>. - name: page.dir description: >- The path between the source directory and the file of a page, e.g. <code>/pages/</code> when the page is at path <code>pages/about.md</code> relative to the source directory. This is derived from the <code>url</code> attribute of the page and can therefore be overridden via the <code>permalink</code> key in the <a href="/docs/front-matter/">front matter</a>. NOTE: This variable is not applicable to posts and documents in user-defined collections. Use the <code>categories</code> variable to get similar info for posts. - name: page.name description: >- The filename of the post or page, e.g. <code>about.md</code> - name: page.path description: >- The path to the raw post or page, relative to the source directory. Example usage: Using a combination of the repository's blob URL and this page variable to get the full URL to the file in the repository. This can be overridden in the <a href="/docs/front-matter/">front matter</a>. - name: page.slug description: >- The filename of a Document resource without its extension (or date prefixes for a post). For example, slug for a post at URL <code>/2017/02/22/my-new-post.html</code>, would be <code>my-new-post</code>. Can be overridden in the <a href="/docs/front-matter/">front matter</a>. - name: page.ext description: >- The file extension of a Document resource. For example, <code>.html</code>. Can be overridden in the <a href="/docs/front-matter/">front matter</a>. - name: page.next description: >- The next post relative to the position of the current post in <code>site.posts</code>. Returns <code>nil</code> for the last entry. - name: page.previous description: >- The previous post relative to the position of the current post in <code>site.posts</code>. Returns <code>nil</code> for the first entry. jekyll: - name: jekyll.version description: Version of Jekyll used to build the site. - name: jekyll.environment description: Value assigned to environment variable <code>JEKYLL_ENV</code> during a build. theme: - name: theme.root description: >- Absolute path to the theme-gem. Rendered only when environment variable <code>JEKYLL_ENV</code> is set to <code>development</code>. - name: theme.authors description: Comma separated string composed of the authors of the theme-gem. - name: theme.description description: Description or summary of the theme-gem as specified in the theme gemspec. - name: theme.version description: The version string of current theme. - name: theme.dependencies description: List of runtime dependencies of the theme. - name: theme.metadata description: A mapping of key-value pairs as defined in the theme gemspec. paginator: - name: paginator.page description: The number of the current page - name: paginator.per_page description: Number of posts per page - name: paginator.posts description: Posts available for the current page - name: paginator.total_posts description: Total number of posts - name: paginator.total_pages description: Total number of pages - name: paginator.previous_page description: >- The number of the previous page, or <code>nil</code> if no previous page exists - name: paginator.previous_page_path description: >- The path to the previous page, or <code>nil</code> if no previous page exists - name: paginator.next_page description: >- The number of the next page, or <code>nil</code> if no subsequent page exists - name: paginator.next_page_path description: >- The path to the next page, or <code>nil</code> if no subsequent page exists