When creating a page, there are several libraries you have access to. There are also a number of things you must NOT do. This page hopes to clear up some of these issues.
You may not include external javascript files unless they are included as part of the BODY of the document. Javascript includes located in the <head> are ignored.
You will not need to include JQuery - it is already included by default
You may not include external CSS stylesheets.
You may add any custom styles in the <head> via the <style> tag. These will be imported and kept.
To allow responsive layout, the website uses the Bootstrap template. This means you are able to use most standard Bootstrap and FontAwesome CSS styles.
The use of AJAX to access data is unlikely to work due to XSS (Cross Site Scripting) protection. Even if your content is hosted externally, the page is presented to the user from the rAware website. Because of this, most AJAX requests will fail on modern browsers.