Skip to content

Commit 99e8c79

Browse files
authored
Merge pull request #2276 from mtruj013/embedding-faqs
fix: Reinstate embedding faq page under the /partners/isv-program bubble
2 parents c65a539 + 63a6440 commit 99e8c79

File tree

3 files changed

+115
-0
lines changed

3 files changed

+115
-0
lines changed

redirects.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ data/docs/spark/k8s(?P<path>.*)/?: "https://canonical-charmed-spark.readthedocs-
3131
data/docs/opensearch/iaas(?P<path>.*)/?: "https://canonical-charmed-opensearch.readthedocs-hosted.com/2/{path}"
3232
edge-computing/?: "/solutions/infrastructure/edge-computing"
3333
embedding/?: "/partners/isv-program"
34+
embedding/faqs/?: "/partners/isv-program/embedding-faq"
3435
partners/apps-and-snaps/?: "/partners"
3536
partners/kubernetes/?: "/partners"
3637
partners/devices-and-iot/?: "/partners/iot-device"
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
{% extends 'base_index.html' %}
2+
3+
{% from "_macros/vf_tiered-list.jinja" import vf_tiered_list %}
4+
5+
{% block title %}FAQs - IPRights Policy - January 2024{% endblock %}
6+
7+
{% block meta_description %}
8+
Embedded Linux development is easy and secure on Ubuntu. Choose an enterprise app store or use the global Snap Store for reliable IoT package management. Start your embedded Linux project today. Get Ubuntu on your board with hardware certification and enablement.
9+
{% endblock meta_description %}
10+
11+
{% block meta_image %}
12+
https://assets.ubuntu.com/v1/c75046c4-Smart+City.svg
13+
{% endblock meta_image %}
14+
15+
{% block meta_copydoc %}
16+
https://docs.google.com/document/d/1xWrM0D4LkWdJh9EiAUuXgbYKqh15BnNcQpXqTlZCuYA/edit?tab=t.0
17+
{% endblock meta_copydoc %}
18+
19+
{% block body_class %}
20+
is-paper
21+
{% endblock body_class %}
22+
23+
{% block content %}
24+
<section class="p-section--deep">
25+
{%- call(slot) vf_tiered_list(is_description_full_width_on_desktop=false, is_list_full_width_on_tablet=true) -%}
26+
{%- if slot == 'title' -%}
27+
<div class="p-section--shallow"></div>
28+
<h2>FAQs</h2>
29+
{%- endif -%}
30+
31+
{%- if slot == 'description' -%}
32+
<div class="p-section--shallow u-hide--small u-hide--medium"></div>
33+
<div class="p-section--shallow">
34+
<p>
35+
As per the <a href="/legal/intellectual-property-policy">IPRights Policy</a>, Canonical owns and manages certain intellectual property rights in Ubuntu and other associated intellectual property (Canonical IP) and licenses the use of these rights to enterprises, individuals and members of the Ubuntu community in accordance with the IPRights Policy.
36+
</p>
37+
<p>
38+
Our policy exists to ensure that when you receive something that claims to be Ubuntu, you can trust that it will work to the same standard, regardless of where you got it from. And people everywhere tell us they appreciate that - when they get Ubuntu on a cloud or as a VM, it works, and they can trust it.
39+
</p>
40+
</div>
41+
{%- endif -%}
42+
43+
{%- if slot == 'list_item_title_1' -%}
44+
<h3 class="p-heading--5 faq-question">Can I publish a cloud VM image based on Ubuntu?</h3>
45+
{%- endif -%}
46+
47+
{%- if slot == 'list_item_description_1' -%}
48+
<p class="faq-answer">Yes, on AWS, Azure, Google, IBM, Oracle, and the others where we have a contract.</p>
49+
{%- endif -%}
50+
51+
{%- if slot == 'list_item_title_2' -%}
52+
<h3 class="p-heading--5 faq-question">Can I install Ubuntu in my company for internal company use only for free?</h3>
53+
{%- endif -%}
54+
55+
{%- if slot == 'list_item_description_2' -%}
56+
<p class="faq-answer">
57+
Yes, you get free security updates on the "main" OS and packages for 5 years, you might want to consider an Ubuntu Pro subscription for wider and longer duration security coverage, or Support subscription for phone and email support.
58+
</p>
59+
{%- endif -%}
60+
61+
{%- if slot == 'list_item_title_3' -%}
62+
<h3 class="p-heading--5 faq-question">Can I redistribute Ubuntu?</h3>
63+
{%- endif -%}
64+
65+
{%- if slot == 'list_item_description_3' -%}
66+
<p class="faq-answer">
67+
Yes, you can mirror our installation images and archives as long as those are mirrored exactly and without modifications.
68+
</p>
69+
{%- endif -%}
70+
71+
{%- if slot == 'list_item_title_4' -%}
72+
<h3 class="p-heading--5 faq-question">Can I preinstall Ubuntu on hardware that I sell?</h3>
73+
{%- endif -%}
74+
75+
{%- if slot == 'list_item_description_4' -%}
76+
<p class="faq-answer">
77+
You can include unmodified Ubuntu installation media "in the box" [see redistribution above] but you cannot preinstall Ubuntu and ship the resulting hardware without an agreement with Canonical; we have agreements for both certified and uncertified hardware preinstallation.
78+
</p>
79+
{%- endif -%}
80+
81+
{%- if slot == 'list_item_title_5' -%}
82+
<h3 class="p-heading--5 faq-question">What is a modification?</h3>
83+
{%- endif -%}
84+
85+
{%- if slot == 'list_item_description_5' -%}
86+
<p class="faq-answer">
87+
There are many examples of what might be a modification to Ubuntu, including modifying or replacing the kernel, removing or adding packages, theme changes and pre-installation. Ubuntu is available to download in the form of an ISO installation image with DEB files. If a customer was to distribute the unmodified ISO installation image in the same format on a CD or server, this would be unmodified Ubuntu.
88+
</p>
89+
{%- endif -%}
90+
{%- endcall -%}
91+
</section>
92+
93+
<style>
94+
.faq-question,
95+
.faq-answer {
96+
position: relative;
97+
padding-left: 2rem;
98+
}
99+
100+
.faq-question::before,
101+
.faq-answer::before {
102+
position: absolute;
103+
left: 0;
104+
}
105+
106+
.faq-question::before {
107+
content: "Q.";
108+
}
109+
110+
.faq-answer::before {
111+
content: "A.";
112+
}
113+
</style>
114+
{% endblock content %}

0 commit comments

Comments
 (0)