-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from DataRecce/docs/empty-doc-for-recce-cloud
Add recce cloud blank page
- Loading branch information
Showing
4 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: Recce Cloud - Setup CD in GitHub Actions | ||
template: embed.html | ||
--- | ||
|
||
# Recce Cloud - Setup CD in GitHub Actions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: Recce Cloud - Setup CI in GitHub Actions | ||
template: embed.html | ||
--- | ||
|
||
# Recce Cloud - Setup CI in GitHub Actions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: Recce Cloud - Setup GitHub Codespaces | ||
template: embed.html | ||
--- | ||
|
||
# Recce Cloud - Setup GitHub Codespaces |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{% extends "base.html" %} | ||
<!-- Disable header--> | ||
{% block header %} {% set class = "md-header" %} {% if "navigation.tabs.sticky" | ||
in features %} {% set class = class ~ " md-header--shadow md-header--lifted" %} | ||
{% elif "navigation.tabs" not in features %} {% set class = class ~ " | ||
md-header--shadow" %} {% endif %} | ||
<header class="{{ class }}" data-md-component="header"></header> | ||
{% endblock %} | ||
|
||
<!-- Disable footer --> | ||
{% block footer %}{% endblock %} | ||
|
||
<!-- Theme-related JavaScript --> | ||
{% block scripts %} {{ super() }} | ||
<!-- Extra JavaScript (can't be set in mkdocs.yml due to content hash) --> | ||
<script src="{{ 'assets/js/custom.js' | url }}"></script> | ||
{% endblock %} |