|
1 | 1 | {% extends 'base_index.html' %} |
2 | 2 |
|
| 3 | +{% from "_macros/vf_hero.jinja" import vf_hero %} |
| 4 | + |
3 | 5 | {% block title %}Feast feature store | MLOps{% endblock %} |
4 | 6 |
|
5 | 7 | {% block meta_description %} |
|
16 | 18 |
|
17 | 19 | {% block content %} |
18 | 20 |
|
19 | | - <section class="p-strip is-shallow"> |
20 | | - <div class="row--25-75"> |
21 | | - <div class="col u-no-padding--bottom p-section"> |
22 | | - <div> |
23 | | - {{ image ( |
24 | | - url="https://assets.ubuntu.com/v1/5dc85b16-feast-logo.png", |
25 | | - alt="", |
26 | | - width="852", |
27 | | - height="175", |
28 | | - hi_def=True, |
29 | | - loading="auto" |
30 | | - ) | safe |
31 | | - }} |
32 | | - </div> |
33 | | - </div> |
34 | | - <div class="col"> |
35 | | - <div class="row"> |
36 | | - <div class="col p-section--shallow"> |
37 | | - <h1 class="u-no-margin--bottom"> |
38 | | - Best in class feature store, |
39 | | - <br class="u-hide--small u-hide--medium" /> |
40 | | - integrated into your MLOps stack |
41 | | - </h1> |
42 | | - <h2>Open source. Fully supported. Built for scale.</h2> |
43 | | - </div> |
44 | | - <div class="p-section--shallow"> |
45 | | - <p> |
46 | | - Charmed Feast is Canonical's securely designed, production-ready feature store for machine learning. Deploy it in minutes alongside Charmed Kubeflow, and manage features across environments with confidence. |
47 | | - </p> |
48 | | - </div> |
49 | | - </div> |
50 | | - |
51 | | - <hr class="p-rule--muted" /> |
52 | | - <a class="p-button--positive" |
53 | | - href="https://documentation.ubuntu.com/charmed-feast/">Install Charmed Feast</a> |
54 | | - <a class="p-button js-invoke-modal" |
55 | | - href="/mlops/contact-us" |
56 | | - aria-controls="mlops-modal">Contact us</a> |
57 | | - </div> |
58 | | - </div> |
59 | | - </section> |
| 21 | + {% call(slot) vf_hero( |
| 22 | + title_text='Best in class feature store, <br class="u-hide--small u-hide--medium" /> integrated into your MLOps stack', |
| 23 | + subtitle_text='Open source. Fully supported. Built for scale.', |
| 24 | + chip_text='Supported with Ubuntu Pro', |
| 25 | + layout='25/75', |
| 26 | + blocks=[ |
| 27 | + { |
| 28 | + "type": "description", |
| 29 | + "padding": "shallow", |
| 30 | + "item": { |
| 31 | + "type": "html", |
| 32 | + "content": '<p>Charmed Feast is Canonical\'s securely designed, production-ready feature store for machine learning. Deploy it in minutes alongside Charmed Kubeflow, and manage features across environments with confidence.</p><hr class="p-rule--muted" />' |
| 33 | + } |
| 34 | + }, |
| 35 | + { |
| 36 | + "type": "cta-block", |
| 37 | + "padding": "shallow", |
| 38 | + "item": { |
| 39 | + "primary": { |
| 40 | + "content_html": "Install Charmed Feast", |
| 41 | + "attrs": { |
| 42 | + "href": "https://documentation.ubuntu.com/charmed-feast/" |
| 43 | + } |
| 44 | + }, |
| 45 | + "secondaries": [ |
| 46 | + { |
| 47 | + "content_html": "Contact us", |
| 48 | + "attrs": { |
| 49 | + "href": "/mlops/contact-us", |
| 50 | + "class": "js-invoke-modal", |
| 51 | + "aria-controls": "mlops-modal" |
| 52 | + } |
| 53 | + } |
| 54 | + ] |
| 55 | + } |
| 56 | + } |
| 57 | + ] |
| 58 | + ) -%} |
| 59 | + {%- if slot == 'signpost_image' -%} |
| 60 | + {{ image ( |
| 61 | + url="https://assets.ubuntu.com/v1/5dc85b16-feast-logo.png", |
| 62 | + alt="", |
| 63 | + width="852", |
| 64 | + height="175", |
| 65 | + hi_def=True, |
| 66 | + loading="auto" |
| 67 | + ) | safe |
| 68 | + }} |
| 69 | + {%- endif -%} |
| 70 | + {%- endcall -%} |
60 | 71 |
|
61 | 72 | <section class="p-section"> |
62 | 73 | <div class="u-fixed-width"> |
|
0 commit comments