|
1 | 1 | {% extends 'base_index.html' %} |
2 | 2 |
|
3 | 3 | {% from 'macros/_macros-lite-video.jinja' import lite_video %} |
| 4 | +{% from '_macros/vf_tab-section.jinja' import vf_tab_section %} |
4 | 5 |
|
5 | 6 | {% block meta_copydoc %} |
6 | 7 | https://docs.google.com/document/d/1NqSg2dt5wbmSY6IwWKo9gbxzOuyKL_gUZnFlAux1RU8 |
@@ -258,11 +259,97 @@ <h2>...then decide to take on a role in tech leadership and management.</h2> |
258 | 259 |
|
259 | 260 | <section class="p-strip--careers-progression is-dark u-hide--small"> |
260 | 261 | <div class="row" data-animation="u-animation--slide-from-bottom"> |
261 | | - <h2 class="u-sv3">Leveling framework</h2> |
262 | 262 | {{ image(url="https://assets.ubuntu.com/v1/8c7d2b68-diagram.jpg", alt="A diagram illustrating career paths starting from graduate level. It branches into three leadership tracks: depth for technical specialists, drive for staff and principals, and plan for management roles like director and VP", width="3696", height="1540", hi_def=True, loading="lazy" ) | safe }} |
263 | 263 | </div> |
264 | 264 | </section> |
265 | 265 |
|
| 266 | + {{ vf_tab_section( |
| 267 | + title={"text": "Leveling framework"}, |
| 268 | + layout="50-50", |
| 269 | + attrs={"class": "is-dark p-strip--careers-progression u-hide--small"}, |
| 270 | + tabs=[ |
| 271 | + { |
| 272 | + "tab_html": "Overview", |
| 273 | + "type": "basic-section", |
| 274 | + "item": { |
| 275 | + "items": [ |
| 276 | + { |
| 277 | + "type": "description", |
| 278 | + "item": { |
| 279 | + "type": "html", |
| 280 | + "content": ' |
| 281 | + <p> |
| 282 | + Depending on the direction, goals, and maturity of your career, Canonical’s leveling framework offers a variety of directions and opportunities, designed to help you flourish in the long term. |
| 283 | + </p> |
| 284 | + <p> |
| 285 | + Early careers team members may join us at Graduate or Associate level before achieving Prof I and beyond. Following Prof II, team members have the option to focus on one of three tracks: Depth, Drive, and Plan. |
| 286 | + </p> |
| 287 | + ' |
| 288 | + } |
| 289 | + } |
| 290 | + ] |
| 291 | + } |
| 292 | + }, |
| 293 | + { |
| 294 | + "tab_html": "Depth", |
| 295 | + "type": "basic-section", |
| 296 | + "item": { |
| 297 | + "items": [ |
| 298 | + { |
| 299 | + "type": "description", |
| 300 | + "item": { |
| 301 | + "type": "html", |
| 302 | + "content": ' |
| 303 | + <p> |
| 304 | + Our “Depth” track, progressing from Specialist to Fellow, is ideal for technical experts who want to gain a deep understanding of complex challenges and deliver meaningful value. From forging greater security for Ubuntu Desktop to advancing our commercial systems, Depth track members focus on mastery and innovation in their discipline. |
| 305 | + </p> |
| 306 | + ' |
| 307 | + } |
| 308 | + } |
| 309 | + ] |
| 310 | + } |
| 311 | + }, |
| 312 | + { |
| 313 | + "tab_html": "Drive", |
| 314 | + "type": "basic-section", |
| 315 | + "item": { |
| 316 | + "items": [ |
| 317 | + { |
| 318 | + "type": "description", |
| 319 | + "item": { |
| 320 | + "type": "html", |
| 321 | + "content": ' |
| 322 | + <p> |
| 323 | + For those who excel at balancing cross-team coordination with strategic insight, our “Drive” track offers the opportunity to shape Canonical’s landscape and get things done cross-functionally. This track contains the levels of Senior to Principal, all of which help to realize the processes, teams, and products that define Canonical. |
| 324 | + </p> |
| 325 | + ' |
| 326 | + } |
| 327 | + } |
| 328 | + ] |
| 329 | + } |
| 330 | + }, |
| 331 | + { |
| 332 | + "tab_html": "Plan", |
| 333 | + "type": "basic-section", |
| 334 | + "item": { |
| 335 | + "items": [ |
| 336 | + { |
| 337 | + "type": "description", |
| 338 | + "item": { |
| 339 | + "type": "html", |
| 340 | + "content": ' |
| 341 | + <p> |
| 342 | + Our “Plan” track encompasses career levels from Manager to VP, and combines a passion for excellence with a passion for people. Their primary focus is on strategizing the future of Canonical: defining and orchestrating data-driven collaboration, and enhancing their teams’ high quality output. |
| 343 | + </p> |
| 344 | + ' |
| 345 | + } |
| 346 | + } |
| 347 | + ] |
| 348 | + } |
| 349 | + }, |
| 350 | + ] |
| 351 | + ) }} |
| 352 | + |
266 | 353 | <section class="p-strip"> |
267 | 354 | <div class="u-fixed-width u-sv3"> |
268 | 355 | <h2>Be a part of open source</h2> |
@@ -312,4 +399,5 @@ <h2 class="p-text--x-small-capitalised u-align-text--x-small-to-default">Departm |
312 | 399 | src="https://cdn.jsdelivr.net/npm/@justinribeiro/lite-youtube@1.9.0/lite-youtube.min.js" |
313 | 400 | integrity="sha384-krUlgvxdz2iSLnbpvxj8zLWWUCa3QxzwLbW3EXmbzXCoAQ+ANH1cWJYRMc/TErh+" |
314 | 401 | crossorigin="anonymous" nonce="{{ csp_nonce }}"></script> |
| 402 | + <script type="module" src="/static/js/modules/vanilla-framework/js/tabs.js" nonce="{{ csp_nonce }}"></script> |
315 | 403 | {% endblock %} |
0 commit comments