Yahoo Search Búsqueda en la Web

Resultado de búsqueda

  1. Simple. No more databases, comment moderation, or pesky updates to installjust your content . How Jekyll works →. Static. Markdown, Liquid, HTML & CSS go in. Static sites come out ready for deployment. Jekyll template guide →. Blog-aware. Permalinks, categories, pages, posts, and custom layouts are all first-class citizens here.

    • Docs

      Quickstart. Jekyll is a static site generator. It takes text...

    • Resources

      CloudCannon Academy is a set of resources created by...

    • News

      This release, 3.9.4, is to bring Ruby 3.3 support to Jekyll....

    • Showcase

      Showcase. Jekyll powers many company websites; here are a...

    • Core Team

      The Jekyll Team Core Team. The Jekyll Core Team’s...

    • Ruby 101

      Ruby 101. Jekyll is written in Ruby. If you’re new to Ruby,...

    • Installation

      Official guide to install Jekyll on macOS, GNU/Linux or...

    • Posts

      Jekyll has first class support for tags and categories in...

  2. 23 de ago. de 2023 · Jekyll puede utilizarse para crear varios tipos de sitios estáticos, como un blog personal, un sitio web de portafolio y un sitio web de documentación, sin necesidad de una base de datos ni de utilizar un sistema de gestión de contenidos como WordPress.

    • Technical Editor
    • Kinsta
    • jekyll blog1
    • jekyll blog2
    • jekyll blog3
    • jekyll blog4
  3. 22 de jul. de 2020 · ⬇️ ⬇️ Más Información ⬇️ ⬇️ En este vídeo te muestro cómo puedes crear tu blog o página web utilizando Jekyll en menos de 20 minutos. Si aún no conoces Jeky...

    • 19 min
    • 6.2K
    • Javier Helguera
    • Blogging
    • Postspermalink
    • Layoutpermalink
    • List Postspermalink
    • More Postspermalink

    You might be wondering how you can have a blog without a database. In trueJekyll style, blogging is powered by text files only.

    Blog posts live in a folder called _posts. The filename for posts have aspecial format: the publish date, then a title, followed by an extension. Create your first post at _posts/2018-08-20-bananas.mdwith thefollowing content: This is like the about.md you created before except it has an author anda different layout. author is a custom variable, it...

    The post layout doesn’t exist so you’ll need to create it at_layouts/post.htmlwith the following content: This is an example of layout inheritance. The post layout outputs the title,date, author and content body which is wrapped by the default layout. Also note the date_to_stringfilter, this formats a date into a nicer format.

    There’s currently no way to navigate to the blog post. Typically a blog has apage which lists all the posts, let’s do that next. Jekyll makes posts available at site.posts. Create blog.html in your root (/blog.html) with the following content: There’s a few things to note with this code: 1. post.urlis automatically set by Jekyll to the output path ...

    A blog isn’t very exciting with a single post. Add a few more: _posts/2018-08-21-apples.md: _posts/2018-08-22-kiwifruit.md: Open http://localhost:4000and have a look through your blog posts. Next we’ll focus on creating a page for each post author. 1. Setup 2. Liquid 3. Front Matter 4. Layouts 5. Includes 6. Data Files 7. Assets 8. Blogging 9. Coll...

  4. Jekyll is a simple, blog-aware, static site generator perfect for personal, project, or organization sites. Think of it like a file-based CMS, without all the complexity. Jekyll takes your content, renders Markdown and Liquid templates, and spits out a complete, static website ready to be served by Apache, Nginx or another web server.

  5. In contrast to Docs, Tutorials provide more detailed, narrative instruction that cover a variety of Jekyll topics and scenarios. Tutorials might contain the following: Step-by-step processes through particular scenarios or challenges. Full walk-throughs using sample data, showing inputs and results from the sample data.