2022-06-18 19:57:37 +00:00
|
|
|
{% extends ../base.html %}
|
|
|
|
|
|
|
|
{% block meta %}
|
|
|
|
{% end %}
|
|
|
|
|
|
|
|
{% block title %}Crafty Controller - Wiki{% end %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div class="content-wrapper">
|
|
|
|
|
|
|
|
<!-- Page Title Header Starts-->
|
|
|
|
<div class="row page-title-header">
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="page-header">
|
2023-05-14 20:31:19 +00:00
|
|
|
<h4 class="page-title">{{ translate('sidebar', 'documentation', data['lang']) }}</h4>
|
2022-06-18 19:57:37 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12 grid-margin">
|
2023-05-14 20:36:04 +00:00
|
|
|
<iframe src="https://docs.craftycontrol.com/" width=100% height=1100px title="crafty's docs"></iframe>
|
2022-06-18 19:57:37 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<!-- content-wrapper ends -->
|
|
|
|
<style>
|
|
|
|
.popover-body {
|
|
|
|
color: white !important;
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
#desc_id {
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
/* for Internet Explorer, Edge */
|
|
|
|
scrollbar-width: none;
|
|
|
|
/* for Firefox */
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
#desc_id::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
/* for Chrome, Safari, and Opera */
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
{% end %}
|