Editing Drupal Sites
Below are some resources I pulled together for my reference (and anyone else who finds them useful) for adding content to the Drupal site.
- Adding a PDF as readable content using PDF.js desplay layer. Past the following in the source code replacing the bold text with the file address.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PDF.js Example</title>
</head>
<body>
<iframe
src="/web/viewer.html?file=/test.pdf"
width="800px"
height="600px"
style="border: none;" />
</body>
</html>