Files
UnrealEngineUWP/Engine/Plugins/Experimental/PythonScriptPlugin/SphinxDocs/themes/ue4api/layout.html
Ben Marsh b6605d25ff Update some missing copyright strings.
#rb none
#lockdown Nick.Penwarden

[CL 4668760 by Ben Marsh in Main branch]
2018-12-18 13:38:36 -05:00

33 lines
810 B
HTML

{#
ue4api/layout.html
~~~~~~~~~~~~~~~~~~~
Sphinx layout template for the UE4 API theme.
Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#}
{%- extends "classic/layout.html" %}
{% if theme_collapsiblesidebar|tobool %}
{% set script_files = script_files + ['_static/sidebar.js'] %}
{% endif %}
{% block header %}
<div id="head"></div>
<script>
$(document).ready(function () {
$.ajax({
url: "https://www.unrealengine.com/epic-games-header?useServerUrl=true&lang=en-US",
context: document.body
}).done(function (data) {
$("#head").html(data);
}).fail(function( jqXHR, textStatus, errorThrown ) {
});
});
window._egNavAfterConfigSet = function() {
_epicGamesNav.hideSignIn = true;
_epicGamesNav.hideLocale = true;
};
</script>
{% endblock %}