JEKYLL-TEST🎃

1.0 site variable - Global

  1. site.time = {{site.time}}
  2. site.static_files = {{site.static_files}}
site.static_files => [
    #<Jekyll::StaticFile:0x00000000082d58b8>,
    #<Jekyll::StaticFile:0x00000000082d43a0>,
    #<Jekyll::StaticFile:0x00000000082cff58>,
    #<Jekyll::StaticFile:0x0000000006f09208>,
    #<Jekyll::StaticFile:0x00000000082d5b60>,
    #<Jekyll::StaticFile:0x00000000082d54a8>,
    #<Jekyll::StaticFile:0x0000000006e866a0>,
    #<Jekyll::StaticFile:0x0000000006da10c8>,
    #<Jekyll::StaticFile:0x0000000006da0e48>,
    ...,
  ]



2.0 site.collections = {{site.collections}}

site.collections => {
  [
    #<Jekyll::Document _albums/fkj.md collection=albums>,
    #<Jekyll::Document _albums/josquin.md collection=albums>,
  ],

  [
    #<Jekyll::Document _posts/2018-05-22-hello-world.md collection=posts>,
    #<Jekyll::Document _posts/2018-06-07-Ruby-jekyll-serve.md collection=posts>,
    #<Jekyll::Document _posts/2018-07-06-jupyter-wdcloud.md collection=posts>,
    #<Jekyll::Document _posts/2018-08-04-sb20-platformer.md collection=posts>,

    #<Jekyll::Document _drafts/heated-data-center-MS.md collection=posts>,
    #<Jekyll::Document _drafts/the-first-day-of-year.md collection=posts>,
  ]
}



3.0 config.yml 화일에 정의된 값을 가져온다.

  1. site.favicon1 = {{site.favicon1}}
  2. site.favicon2 = {{site.favicon2}}
  3. site.favicon3 = {{site.favicon3}}



4.0 태그, 카테고리 문서 HTML 전체를 가져온다.

  1. site.categories.python = {{site.categories.python}}
  2. site.tags.game = {{site.tags.game}}



5.0 페이지 레이아웃으로 정의된 문서 HTML 전체를 가져온다

  1. site.pages = {{site.pages}}
  2. site.html_pages = {{site.html_pages}}



6.0 데이터 태그..

  1. site.data = {{site.data}}
{
  “members”=>
    [
      {“name”=>”Nassir Malik”, “github”=>”nassir-malik”, “repo”=>”IOT-Pi3-Alexa-Automation”},
      {“name”=>”R Studio Github”, “github”=>”rstudio”, “repo”=>”RStartHere”},
      {“name”=>”United07”, “github”=>”FunXD”, “repo”=>”Arduino_on_Github”},
      {“name”=>”Mintpepper Park”, “github”=>”unins”, “repo”=>”K-Mooc”},
      {“name”=>”2nd Kay Park”, “github”=>”onito”, “repo”=>”hello_python”}
    ],

  “orgs”=>
    {
      “jekyll”=>
        {
          “username”=>”jekyll”, “name”=>”Jekyll”, “members”=>
            [
              {“name”=>”Tom Preston-Werner”, “github”=>”mojombo”},
              {“name”=>”John Doe”, “github”=>”jdoe”},
              {“name”=>”Parker Moore”, “github”=>”parkr”},
              {“name”=>”Mintpepper Park”, “github”=>”unins”},
              {“name”=>”United07”, “github”=>”FunXD”},
              {“name”=>”2nd Kay Park”, “github”=>”onito”}
            ]
        },

      “rstudio”=>
        {
          “username”=>”rstudio”, “name”=>”R-Studio”, “members”=>
          [
            {“name”=>”2nd Kay Park”, “github”=>”onito”},
            {“name”=>”John Doe”, “github”=>”jdoe”}
          ]
        }
    }
}



7.0 그밖의 태그들..

  1. site.html_files = {{site.html_files}} # nothing
  2. site.documets = {{site.documets}} # nothing




지킬(Jekyll) GitHub Documentation❄️

지킬 한글번역