зеркало из https://github.com/github/mlops.git
37 строки
1.3 KiB
HTML
37 строки
1.3 KiB
HTML
|
---
|
||
|
layout : default
|
||
|
title : Related Projects & Examples
|
||
|
description : "Repository templates, examples, and related projects that demonstrate how various GitHub Features can be used for data science and ML Ops."
|
||
|
---
|
||
|
<section class="intro blog_intro">
|
||
|
<div class="image_box">
|
||
|
<img src="https://ghicons.github.com/assets/images/blue/svg/Collection.svg" alt="repository templates">
|
||
|
</div>
|
||
|
<div class="text_box">
|
||
|
<h1>{{page.title}}</h1>
|
||
|
<p>{{page.description}}</p>
|
||
|
|
||
|
<!-- tags filter -->
|
||
|
<div class="tags">
|
||
|
{% assign tags = site.data.repository_templates | map: 'tags' | uniq %}
|
||
|
<button class="tag_filter active" data-tag="all">All</button>
|
||
|
{%- assign s = tags | size | minus: 2 -%}
|
||
|
{%- for i in (0..s) -%}
|
||
|
<button class="tag_filter" data-tag="{{tags[i] | replace: ' ', '_'}}">{{tags[i]}}</button>
|
||
|
{%- endfor -%}
|
||
|
</div>
|
||
|
|
||
|
<!-- Posts list -->
|
||
|
<div class="posts_list">
|
||
|
{%- for item in site.data.repository_templates -%}
|
||
|
{% assign t = item.tags | join: "%%" | replace: " ", "_"| replace: "%%", " " %}
|
||
|
<div class="blog content_item {{t}}">
|
||
|
<a href="{{item.link}}">
|
||
|
<h2>{{item.title}}</h2>
|
||
|
</a>
|
||
|
<p>{{item.info}}</p>
|
||
|
</div>
|
||
|
{%- endfor -%}
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|