Skip to content

Commit 3c12538

Browse files
committed
server docs use server-docs layout
1 parent 3751f5c commit 3c12538

File tree

186 files changed

+1018
-183
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

186 files changed

+1018
-183
lines changed

jekyll/_data/server-sidenav.yml

+696
Large diffs are not rendered by default.

jekyll/_includes/server-sidebar.html

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<!-- FULL SCREEN /-->
2+
<div class="sidebar-wrapper">
3+
<nav class="sidebar fixed">
4+
{% assign lang = page.lang %}
5+
{% assign sidenav = site.data.server-sidenav[lang] %}
6+
{% assign current_url = page.url | slice: 1, page.url.size %}
7+
8+
<div class="sidebar-item-group">
9+
{% for main-item in sidenav %}
10+
<ul>
11+
<li class="main-nav-item closed" data-section="{{ main-item.name | slugify }}">
12+
<div class="list-wrap">
13+
{% if main-item.icon %}
14+
{% asset '{{ main-item.icon }}' class=icon %}
15+
{% endif %}
16+
17+
{% if main-item.i18n_name %}
18+
{% assign display_name = main-item.i18n_name %}
19+
{% else %}
20+
{% assign display_name = main-item.name %}
21+
{% endif %}
22+
23+
{% if main-item.link %}
24+
<a class="{% if current_url == main-item.link %} active {% endif %}" href="{{ site.baseurl }}/{{ main-item.link }}#section={{ main-item.name | slugify }}" data-proofer-ignore>{{ display_name}}</a>
25+
{% else %}
26+
<span class="nav-span">{{ display_name }}</span>
27+
{% endif %}
28+
29+
{% if main-item.children %}
30+
{% asset docs/arrow-right.svg class=arrow %}
31+
{% endif %}
32+
</div>
33+
34+
{% if main-item.children %}
35+
<ul class="subnav">
36+
{% for item in main-item.children %}
37+
{% if item.name %}
38+
{% if item.i18n_name %}
39+
{% assign display_name = item.i18n_name %}
40+
{% else %}
41+
{% assign display_name = item.name %}
42+
{% endif %}
43+
<li class="nav-item"><a class="{% if current_url == item.link %} active {% endif %}" href="{{ site.baseurl }}/{{ item.link }}#section={{ main-item.name | slugify }}" data-proofer-ignore>{{ display_name }}</a></li>
44+
{% endif %}
45+
46+
{% if item.children %}
47+
<ul>
48+
{% for sub-item in item.children %}
49+
{% if sub-item.i18n_name %}
50+
{% assign display_name = sub-item.i18n_name %}
51+
{% else %}
52+
{% assign display_name = sub-item.name %}
53+
{% endif %}
54+
<li class="subnav-item"><a class="{% if current_url == sub-item.link %} active {% endif %}" href="{{ site.baseurl }}/{{ sub-item.link }}#section={{ main-item.name | slugify }}" data-proofer-ignore>{{ display_name }}</a></li>
55+
{% endfor %}
56+
</ul>
57+
{% endif %}
58+
{% endfor %}
59+
</ul>
60+
{% endif %}
61+
</li>
62+
</ul>
63+
{% endfor %}
64+
</div>
65+
<div class="lang-picker">
66+
<select id="sidebarLangSelect">
67+
<option value="en">English</option>
68+
<option value="ja">日本語</option>
69+
</select>
70+
</div>
71+
</nav>
72+
73+
<script>
74+
// Add the current language to the window for auto setting the dropdown to current language.
75+
window.currentLang = "{{page.lang}}"
76+
</script>
77+
</div>

jekyll/_layouts/server-docs.html

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ site.lang }}">
3+
{% include head.html %}
4+
<body class="{% if page.page-type == "index" or page.page-type == "homepage" %}homepage{% endif %}">
5+
{% if jekyll.environment == "production" %}
6+
{% include google-tag-manager.html %}
7+
{% endif %}
8+
9+
<!-- instant hit template container /-->
10+
<div style="display:none;">
11+
<div id="hits-template">
12+
<h2>Search Results for "<span id="search-term-display"></span>"</h2>
13+
<div id="instant-hits"></div>
14+
</div>
15+
</div>
16+
<div class="outer">
17+
{% include global-nav.html %}
18+
{% include main-searchbar.html %}
19+
{% include mobile-sidebar.html %}
20+
<div class="hits-target"></div>
21+
<div class="main-body">
22+
{% include server-sidebar.html %}
23+
<div class="article-container docs" id="main">
24+
{% if page.collection == "ccie" %}{% include v2-banner.html %}{% endif %}
25+
{% if page.collection == "cci1" %}{% include v2-dev-banner.html %}{% endif %}
26+
{% if page.page-type == "index" %}<h2>{{ page.title }}</h2>{% endif %}
27+
<article>
28+
{% if page.page-type != "index" and page.page-type != "homepage" %}<h1 id="{{ page.title | downcase | split: " " | join: "-" }}">{{ page.title }}</h1>{% endif %}
29+
{% if page.untranslated %}
30+
{% include translation_in_progress.html %}
31+
{% endif %}
32+
{{ content }}
33+
{% if page.collection != 'cci1' and page.page-type != "index" and page.layout == "classic-docs" or page.layout == "enterprise" %}
34+
{% include doc-footer.html %}
35+
{% endif %}
36+
</article>
37+
</div><!-- .article-container -->
38+
</div><!-- .main-body -->
39+
{% include global-footer.html %}
40+
{% include js-config.html %}
41+
{% asset vendor.min.js %}
42+
<script>
43+
var _rollbarConfig = {
44+
accessToken: 'a22956bf457a40e5a9ae6fd842d97392',
45+
captureUncaught: true,
46+
captureUnhandledRejections: true,
47+
payload: { environment: {{site.rollbar_env | jsonify}} }
48+
};
49+
// Rollbar Snippet
50+
!function(r){function e(n){if(o[n])return o[n].exports;var t=o[n]={exports:{},id:n,loaded:!1};return r[n].call(t.exports,t,t.exports,e),t.loaded=!0,t.exports}var o={};return e.m=r,e.c=o,e.p="",e(0)}([function(r,e,o){"use strict";var n=o(1),t=o(4);_rollbarConfig=_rollbarConfig||{},_rollbarConfig.rollbarJsUrl=_rollbarConfig.rollbarJsUrl||"https://cdnjs.cloudflare.com/ajax/libs/rollbar.js/2.4.6/rollbar.min.js",_rollbarConfig.async=void 0===_rollbarConfig.async||_rollbarConfig.async;var a=n.setupShim(window,_rollbarConfig),l=t(_rollbarConfig);window.rollbar=n.Rollbar,a.loadFull(window,document,!_rollbarConfig.async,_rollbarConfig,l)},function(r,e,o){"use strict";function n(r){return function(){try{return r.apply(this,arguments)}catch(r){try{console.error("[Rollbar]: Internal error",r)}catch(r){}}}}function t(r,e){this.options=r,this._rollbarOldOnError=null;var o=s++;this.shimId=function(){return o},"undefined"!=typeof window&&window._rollbarShims&&(window._rollbarShims[o]={handler:e,messages:[]})}function a(r,e){if(r){var o=e.globalAlias||"Rollbar";if("object"==typeof r[o])return r[o];r._rollbarShims={},r._rollbarWrappedError=null;var t=new p(e);return n(function(){e.captureUncaught&&(t._rollbarOldOnError=r.onerror,i.captureUncaughtExceptions(r,t,!0),i.wrapGlobals(r,t,!0)),e.captureUnhandledRejections&&i.captureUnhandledRejections(r,t,!0);var n=e.autoInstrument;return e.enabled!==!1&&(void 0===n||n===!0||"object"==typeof n&&n.network)&&r.addEventListener&&(r.addEventListener("load",t.captureLoad.bind(t)),r.addEventListener("DOMContentLoaded",t.captureDomContentLoaded.bind(t))),r[o]=t,t})()}}function l(r){return n(function(){var e=this,o=Array.prototype.slice.call(arguments,0),n={shim:e,method:r,args:o,ts:new Date};window._rollbarShims[this.shimId()].messages.push(n)})}var i=o(2),s=0,d=o(3),c=function(r,e){return new t(r,e)},p=function(r){return new d(c,r)};t.prototype.loadFull=function(r,e,o,t,a){var l=function(){var e;if(void 0===r._rollbarDidLoad){e=new Error("rollbar.js did not load");for(var o,n,t,l,i=0;o=r._rollbarShims[i++];)for(o=o.messages||[];n=o.shift();)for(t=n.args||[],i=0;i<t.length;++i)if(l=t[i],"function"==typeof l){l(e);break}}"function"==typeof a&&a(e)},i=!1,s=e.createElement("script"),d=e.getElementsByTagName("script")[0],c=d.parentNode;s.crossOrigin="",s.src=t.rollbarJsUrl,o||(s.async=!0),s.onload=s.onreadystatechange=n(function(){if(!(i||this.readyState&&"loaded"!==this.readyState&&"complete"!==this.readyState)){s.onload=s.onreadystatechange=null;try{c.removeChild(s)}catch(r){}i=!0,l()}}),c.insertBefore(s,d)},t.prototype.wrap=function(r,e,o){try{var n;if(n="function"==typeof e?e:function(){return e||{}},"function"!=typeof r)return r;if(r._isWrap)return r;if(!r._rollbar_wrapped&&(r._rollbar_wrapped=function(){o&&"function"==typeof o&&o.apply(this,arguments);try{return r.apply(this,arguments)}catch(o){var e=o;throw e&&("string"==typeof e&&(e=new String(e)),e._rollbarContext=n()||{},e._rollbarContext._wrappedSource=r.toString(),window._rollbarWrappedError=e),e}},r._rollbar_wrapped._isWrap=!0,r.hasOwnProperty))for(var t in r)r.hasOwnProperty(t)&&(r._rollbar_wrapped[t]=r[t]);return r._rollbar_wrapped}catch(e){return r}};for(var u="log,debug,info,warn,warning,error,critical,global,configure,handleUncaughtException,handleUnhandledRejection,captureEvent,captureDomContentLoaded,captureLoad".split(","),f=0;f<u.length;++f)t.prototype[u[f]]=l(u[f]);r.exports={setupShim:a,Rollbar:p}},function(r,e){"use strict";function o(r,e,o){if(r){var t;if("function"==typeof e._rollbarOldOnError)t=e._rollbarOldOnError;else if(r.onerror){for(t=r.onerror;t._rollbarOldOnError;)t=t._rollbarOldOnError;e._rollbarOldOnError=t}var a=function(){var o=Array.prototype.slice.call(arguments,0);n(r,e,t,o)};o&&(a._rollbarOldOnError=t),r.onerror=a}}function n(r,e,o,n){r._rollbarWrappedError&&(n[4]||(n[4]=r._rollbarWrappedError),n[5]||(n[5]=r._rollbarWrappedError._rollbarContext),r._rollbarWrappedError=null),e.handleUncaughtException.apply(e,n),o&&o.apply(r,n)}function t(r,e,o){if(r){"function"==typeof r._rollbarURH&&r._rollbarURH.belongsToShim&&r.removeEventListener("unhandledrejection",r._rollbarURH);var n=function(r){var o,n,t;try{o=r.reason}catch(r){o=void 0}try{n=r.promise}catch(r){n="[unhandledrejection] error getting `promise` from event"}try{t=r.detail,!o&&t&&(o=t.reason,n=t.promise)}catch(r){t="[unhandledrejection] error getting `detail` from event"}o||(o="[unhandledrejection] error getting `reason` from event"),e&&e.handleUnhandledRejection&&e.handleUnhandledRejection(o,n)};n.belongsToShim=o,r._rollbarURH=n,r.addEventListener("unhandledrejection",n)}}function a(r,e,o){if(r){var n,t,a="EventTarget,Window,Node,ApplicationCache,AudioTrackList,ChannelMergerNode,CryptoOperation,EventSource,FileReader,HTMLUnknownElement,IDBDatabase,IDBRequest,IDBTransaction,KeyOperation,MediaController,MessagePort,ModalWindow,Notification,SVGElementInstance,Screen,TextTrack,TextTrackCue,TextTrackList,WebSocket,WebSocketWorker,Worker,XMLHttpRequest,XMLHttpRequestEventTarget,XMLHttpRequestUpload".split(",");for(n=0;n<a.length;++n)t=a[n],r[t]&&r[t].prototype&&l(e,r[t].prototype,o)}}function l(r,e,o){if(e.hasOwnProperty&&e.hasOwnProperty("addEventListener")){for(var n=e.addEventListener;n._rollbarOldAdd&&n.belongsToShim;)n=n._rollbarOldAdd;var t=function(e,o,t){n.call(this,e,r.wrap(o),t)};t._rollbarOldAdd=n,t.belongsToShim=o,e.addEventListener=t;for(var a=e.removeEventListener;a._rollbarOldRemove&&a.belongsToShim;)a=a._rollbarOldRemove;var l=function(r,e,o){a.call(this,r,e&&e._rollbar_wrapped||e,o)};l._rollbarOldRemove=a,l.belongsToShim=o,e.removeEventListener=l}}r.exports={captureUncaughtExceptions:o,captureUnhandledRejections:t,wrapGlobals:a}},function(r,e){"use strict";function o(r,e){this.impl=r(e,this),this.options=e,n(o.prototype)}function n(r){for(var e=function(r){return function(){var e=Array.prototype.slice.call(arguments,0);if(this.impl[r])return this.impl[r].apply(this.impl,e)}},o="log,debug,info,warn,warning,error,critical,global,configure,handleUncaughtException,handleUnhandledRejection,_createItem,wrap,loadFull,shimId,captureEvent,captureDomContentLoaded,captureLoad".split(","),n=0;n<o.length;n++)r[o[n]]=e(o[n])}o.prototype._swapAndProcessMessages=function(r,e){this.impl=r(this.options);for(var o,n,t;o=e.shift();)n=o.method,t=o.args,this[n]&&"function"==typeof this[n]&&("captureDomContentLoaded"===n||"captureLoad"===n?this[n].apply(this,[t[0],o.ts]):this[n].apply(this,t));return this},r.exports=o},function(r,e){"use strict";r.exports=function(r){return function(e){if(!e&&!window._rollbarInitialized){r=r||{};for(var o,n,t=r.globalAlias||"Rollbar",a=window.rollbar,l=function(r){return new a(r)},i=0;o=window._rollbarShims[i++];)n||(n=o.handler),o.handler._swapAndProcessMessages(l,o.messages);window[t]=n,window._rollbarInitialized=!0}}}}]);
51+
// End Rollbar Snippet
52+
</script>
53+
{% asset app.bundle.js %}
54+
{% asset site.min.js %}
55+
{% asset jquery.cookie.min.js %}
56+
{% asset main.js %}
57+
{% asset nav.js %}
58+
{% asset shared/analytics-recursive-tracking.js %}
59+
<script type="text/javascript" src="https://cdn.jsdelivr.net/docsearch.js/2/docsearch.min.js"></script>
60+
</div><!-- .outter -->
61+
</body>
62+
</html>

jekyll/_server/2.19/about-circleci.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Overview"
44
short-title: "Overview"
55
description: "Starting point for CircleCI 2.0 docs"

jekyll/_server/2.19/add-ssh-key.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Adding an SSH Key to CircleCI"
44
short-title: "Adding an SSH Key"
55
description: "How to Add an SSH Key to CircleCI"

jekyll/_server/2.19/admin-faq.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Frequently Asked Questions
2-
:page-layout: classic-docs
2+
:page-layout: server-docs
33
:page-liquid:
44
:icons: font
55
:toc: macro

jekyll/_server/2.19/adv-config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Advanced Config"
44
short-title: "Advanced Config"
55
description: "Summary of advanced config options and features"

jekyll/_server/2.19/api-job-trigger.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Using the API to Trigger Jobs"
44
short-title: "Using the API to Trigger Jobs"
55
description: "How to define and trigger non-build jobs"

jekyll/_server/2.19/architecture.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= CircleCI Server Container Architecture
2-
:page-layout: classic-docs
2+
:page-layout: server-docs
33
:page-liquid:
44
:icons: font
55
:toc: macro

jekyll/_server/2.19/archive.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "archive Archive"
44
short-title: "archive Archive"
55
description: "Archive of EOL"

jekyll/_server/2.19/artifactory.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: Upload to Artifactory
44
categories: [how-to]
55
description: How to upload Artifacts to Artifactory in CircleCI

jekyll/_server/2.19/artifacts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Storing Build Artifacts"
44
short-title: "Storing Build Artifacts"
55
description: "Example of uploading artifacts created during a build"

jekyll/_server/2.19/authentication.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Authentication
2-
:page-layout: classic-docs
2+
:page-layout: server-docs
33
:page-liquid:
44
:icons: font
55
:toc: macro

jekyll/_server/2.19/aws-manual.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Installing CircleCI 2.0 on Amazon Web Services Manually"
44
category: [administration]
55
order: 11

jekyll/_server/2.19/aws-prereq.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Installation Prerequisites
2-
:page-layout: classic-docs
2+
:page-layout: server-docs
33
:page-liquid:
44
:source-highlighter: rouge
55
:rouge-linenums-mode: inline

jekyll/_server/2.19/aws-teardown.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Teardown
2-
:page-layout: classic-docs
2+
:page-layout: server-docs
33
:page-liquid:
44
:icons: font
55
:toc: macro

jekyll/_server/2.19/aws.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[#install]
22
= Installation on AWS with Terraform
3-
:page-layout: classic-docs
3+
:page-layout: server-docs
44
:page-liquid:
55
:icons: font
66
:toc: macro

jekyll/_server/2.19/backup.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Backup and Recovery
2-
:page-layout: classic-docs
2+
:page-layout: server-docs
33
:page-liquid:
44
:icons: font
55
:toc: macro

jekyll/_server/2.19/basics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Basics"
44
description: "Basics"
55
---

jekyll/_server/2.19/browser-testing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: Browser Testing
44
description: Browser Testing on CircleCI
55
category: [test]

jekyll/_server/2.19/build-artifacts.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Build Artifacts
2-
:page-layout: classic-docs
2+
:page-layout: server-docs
33
:page-liquid:
44
:icons: font
55
:toc: macro

jekyll/_server/2.19/build-processing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Enabling Pipelines"
44
short-title: "Enabling Pipelines"
55
description: "How to enable pipelines"

jekyll/_server/2.19/build-publish-snap-packages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Build and Publish Snap Packages using Snapcraft on CircleCI"
44
short-title: "Build & Publish Snap Packages"
55
description: "How to build and publish Snap packages on CircleCI using Snapcraft."

jekyll/_server/2.19/build.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Build Environments"
44
description: "CircleCI 2.0 Build Environment Configuration"
55
---

jekyll/_server/2.19/building-docker-images.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Running Docker Commands"
44
short-title: "Running Docker Commands"
55
description: "How to build Docker images and access remote services"

jekyll/_server/2.19/caching.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Caching Dependencies"
44
short-title: "Caching Dependencies"
55
description: "Caching Dependencies"

jekyll/_server/2.19/certificates.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Setting Up Certificates
2-
:page-layout: classic-docs
2+
:page-layout: server-docs
33
:page-liquid:
44
:icons: font
55
:toc: macro

jekyll/_server/2.19/circleci-images.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Pre-Built CircleCI Docker Images"
44
short-title: "Pre-Built CircleCI Docker Images"
55
description: "Listing of available images maintained by CircleCI"

jekyll/_server/2.19/code-coverage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: Generating Code Coverage Metrics
44
short-title: Generating Code Coverage Metrics
55
categories: [configuration-tasks]

jekyll/_server/2.19/collect-test-data.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Collecting Test Metadata"
44
short-title: "Collecting Test Metadata"
55
categories: [configuring-jobs]

jekyll/_server/2.19/concepts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Concepts"
44
short-title: "Concepts"
55
description: "CircleCI 2.0 concepts"

jekyll/_server/2.19/config-intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Configuration Introduction"
44
description: "Landing page for CircleCI 2.0 Config"
55
---

jekyll/_server/2.19/config-overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Configuration"
44
short-title: "Configuration"
55
description: "Description of configuration"

jekyll/_server/2.19/config-start.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Configuration"
44
description: "Landing page for CircleCI 2.0 Config"
55
---

jekyll/_server/2.19/config-translation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Using the 1.0 to 2.0 config-translation Endpoint"
44
short-title: "Using the 1.0 to 2.0 config-translation Endpoint"
55
description: "Instructions for using the experimental Translator to translate CircleCI 1.0 configuration to the 2.0 format."

jekyll/_server/2.19/configuration-reference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Configuring CircleCI"
44
short-title: "Configuring CircleCI"
55
description: "Reference for .circleci/config.yml"

jekyll/_server/2.19/contexts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Using Contexts"
44
short-title: "Using Contexts"
55
description: "Secured, cross-project resources"

jekyll/_server/2.19/credits.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: Using Credits
44
categories: [how-to]
55
description: How to leverage CircleCI credits

jekyll/_server/2.19/custom-images.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: classic-docs
2+
layout: server-docs
33
title: "Using Custom-Built Docker Images"
44
short-title: "Using Custom-Built Docker Images"
55
description: "Why and how to create custom Docker images"

0 commit comments

Comments
 (0)