gulp-visualforce
Version:
Plugin to develop Javascript Apps on Salesforce's Visualforce Technology. Develop locally and automatically deploy static resources
36 lines (18 loc) • 673 B
HTML
<apex:page showHeader="true" standardStylesheets="false" sidebar="false" applyHtmlTag="true" applyBodyTag="true" docType="html-5.0">
<c:clay></c:clay>
<html xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<head>
<link rel="stylesheet" type="text/css" href="{PATH}/index.css" />
<script type="text/javascript">
if(!window._sf) window._sf = {}
window._sf.api = "{!JSENCODE($Api.Session_ID)}";
window._sf.host = "{!JSENCODE(Host)}";
</script>
</head>
<body>
<div class="slds">
</div>
<script type="text/javascript" src="{PATH}/app.js" />
</body>
</html>
</apex:page>