{{ post.title | escape }}
+ + {% if post.excerpt %} +{{ post.excerpt | strip_html | truncatewords: 24 }}
+ {% endif %} +diff --git a/_config.yml b/_config.yml index 1af635e..fd45ff0 100644 --- a/_config.yml +++ b/_config.yml @@ -5,62 +5,26 @@ google_analytics: G-9C5R3JR3QS url: https://blog.vllm.ai logo: /assets/logos/vllm-logo-only-light.png -# The `>` after `description:` means to ignore line-breaks until next key. -# If you want to omit the line-break after the end of text, use `>-` instead. description: > vLLM is a fast and easy-to-use library for LLM inference and serving. # Build settings - -remote_theme: jekyll/minima@5ce4006d175e6e5278bb63a0aad1a85e3bf2370b - plugins: - jekyll-feed - jekyll-seo-tag - jekyll-gfm-admonitions -# Theme-specific settings - -minima: - skin: auto - - # Minima date format. - # Refer to https://shopify.github.io/liquid/filters/date/ if you want to customize this. - # - # date_format: "%b %-d, %Y" - - # Generate social links in footer. - # - social_links: - - title: vLLM repository on GitHub - icon: github - url: "https://github.com/vllm-project/vllm" - - title: vLLM on X (formerly Twitter) - icon: x-twitter - url: "https://x.com/vllm_project" - - title: vLLM on LinkedIn - icon: linkedin - url: "https://www.linkedin.com/company/vllm-project" - # - { platform: devto, user_url: "https://dev.to/jekyll" } - # - { platform: dribbble, user_url: "https://dribbble.com/jekyll" } - # - { platform: facebook, user_url: "https://www.facebook.com/jekyll" } - # - { platform: flickr, user_url: "https://www.flickr.com/photos/jekyll" } - # - { platform: google_scholar, user_url: "https://scholar.google.com/citations?user=qc6CJjYAAAAJ" } - # - { platform: instagram, user_url: "https://www.instagram.com/jekyll" } - # - { platform: keybase, user_url: "https://keybase.io/jekyll" } - # - { platform: microdotblog, user_url: "https://micro.blog/jekyll" } - # - { platform: pinterest, user_url: "https://www.pinterest.com/jekyll" } - # - { platform: stackoverflow, user_url: "https://stackoverflow.com/users/1234567/jekyll" } - # - { platform: telegram, user_url: "https://t.me/jekyll" } - # - { platform: twitter, user_url: "https://twitter.com/jekyllrb" } - # - { platform: youtube, user_url: "https://www.youtube.com/jekyll" } - -# If you want to link only specific pages in your header, uncomment this and add the path to the pages in -# order as they should show up. -# -header_pages: - - index.md - -# Set to `true` to show excerpts on the homepage. -# -# show_excerpts: false +# Social links for footer +social_links: + - title: GitHub + url: "https://github.com/vllm-project/vllm" + icon: github + - title: X + url: "https://x.com/vllm_project" + icon: x + - title: LinkedIn + url: "https://www.linkedin.com/company/vllm-project" + icon: linkedin + +# Excerpt settings +excerpt_separator: diff --git a/_includes/custom-head.html b/_includes/custom-head.html index 6b553b4..70ca0a5 100644 --- a/_includes/custom-head.html +++ b/_includes/custom-head.html @@ -1,12 +1,11 @@ {% if page.math %} - -{% endif %} \ No newline at end of file + +{% endif %} diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..5b8fc4e --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,49 @@ + + +
+ + + {% seo %} + + + {% if site.google_analytics %} + + + {% endif %} + {% include custom-head.html %} + + +{{ site.description }}
+{{ post.excerpt | strip_html | truncatewords: 24 }}
+ {% endif %} +