зеркало из https://github.com/github/mlops.git
37 строки
1.2 KiB
HTML
37 строки
1.2 KiB
HTML
---
|
|
layout : default
|
|
title : GitHub Actions
|
|
description : "GitHub Actions relevant to machine learning and data science, that you can use to automate tasks. These are free to use and are open source."
|
|
---
|
|
<section class="intro blog_intro">
|
|
<div class="image_box">
|
|
<img src="https://ghicons.github.com/assets/images/blue/svg/Actions.svg" alt="actions">
|
|
</div>
|
|
<div class="text_box">
|
|
<h1>{{page.title}}</h1>
|
|
<p>{{page.description}}</p>
|
|
|
|
<!-- tags filter -->
|
|
<div class="tags">
|
|
{% assign tags = site.data.github_actions | 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.github_actions -%}
|
|
{% 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> |