2022-04-22 17:27:03 +00:00
|
|
|
<div id="basic-article" v-cloak>
|
|
|
|
|
<div style="max-width: 800px;" class="container-fluid px-0">
|
|
|
|
|
<div purpose="article-title">
|
2022-08-23 23:22:03 +00:00
|
|
|
<h1><%=thisPage.meta.articleTitle %></h1>
|
2022-06-06 21:40:56 +00:00
|
|
|
<h2 v-if="articleHasSubtitle && articleSubtitle !== undefined">{{articleSubtitle}}</h2>
|
2022-04-22 17:27:03 +00:00
|
|
|
</div>
|
2023-11-08 20:11:24 +00:00
|
|
|
<div class="d-flex flex-sm-row flex-column justify-content-between align-items-sm-center">
|
2023-01-27 22:58:53 +00:00
|
|
|
<div purpose="article-details" class="d-flex flex-row align-items-center">
|
2024-07-29 16:06:29 +00:00
|
|
|
<span><js-timestamp format="billing" :at="thisPage.meta.publishedOn"></js-timestamp></span>
|
2023-01-27 22:58:53 +00:00
|
|
|
<span class="px-2">|</span>
|
|
|
|
|
<img style="height: 28px; width: 28px; border-radius: 100%;" alt="The author's GitHub profile picture" :src="'https://github.com/'+thisPage.meta.authorGitHubUsername+'.png?size=200'">
|
|
|
|
|
<p class="pl-2 font-weight-bold"><%=thisPage.meta.authorFullName %></p>
|
|
|
|
|
</div>
|
2023-11-08 20:11:24 +00:00
|
|
|
<div class="d-flex flex-row align-items-center justify-content-sm-end pt-3 pt-sm-1">
|
2023-12-22 21:53:34 +00:00
|
|
|
<a purpose="rss-button" @click="clickCopyRssLink(articleCategorySlug)"><span>Subscribe</span></a>
|
2023-11-08 20:11:24 +00:00
|
|
|
<a purpose="edit-button" class="d-flex flex-row align-items-center text-nowrap" target="_blank" :href="'https://github.com/fleetdm/fleet/edit/main/articles/'+thisPage.sectionRelativeRepoPath"><img alt="A pencil icon" src="/images/pencil-16x16@2x.png">Edit page</a>
|
2023-09-27 23:35:03 +00:00
|
|
|
</div>
|
2022-04-22 17:27:03 +00:00
|
|
|
</div>
|
2023-01-11 20:28:46 +00:00
|
|
|
<div purpose="article-content" class="d-flex flex-column" parasails-has-no-page-script>
|
2022-04-22 17:27:03 +00:00
|
|
|
<%- partial(path.relative(path.dirname(__filename), path.resolve( sails.config.appPath, path.join(sails.config.builtStaticContent.compiledPagePartialsAppPath, thisPage.htmlId)))) %>
|
|
|
|
|
</div>
|
|
|
|
|
<hr>
|
|
|
|
|
<div purpose="bottom-cta" class="d-block">
|
2024-03-07 01:07:50 +00:00
|
|
|
<h3 style="font-size: 24px; line-height: 32px;">Get started</h3>
|
|
|
|
|
<div class="d-flex flex-sm-row flex-column align-items-center">
|
2024-06-03 18:10:46 +00:00
|
|
|
<a href="/register" class="d-flex btn btn-primary justify-content-center align-items-center" purpose="next-steps-button">
|
|
|
|
|
Start now
|
2022-04-22 17:27:03 +00:00
|
|
|
</a>
|
2024-06-28 21:55:25 +00:00
|
|
|
<animated-arrow-button class="ml-sm-4" href="/contact">Talk to us</animated-arrow-button>
|
2022-04-22 17:27:03 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<%- /* Expose server-rendered data as window.SAILS_LOCALS :: */ exposeLocalsToBrowser() %>
|