Embedding single images
You can embed single images or groups of images in your entry. Please note that the process is slightly different.
First, locate the image you want to embed on the Archives website. If you want to use an image that does not have an entry in the archives website, please talk to one of the archivists about having it scanned and added. If you want viewers to look at a page in a scanned document, please include the page number in your entry.
Next, locate the share option for your archival object. Click the 3 dots at the right side of the object's viewscreen, then click "Share" in the drop down menu.

This will bring up a modal with different sharing options. You will be embedding an image, so click on the "800x600" option for viewer size, then click the "Copy" button to copy the embed code. (The view screen that will be embedded is called an iframe).
Now go back to your WUpedia post. Click on the blue "+" button at the top of the screen to add a new block, and search for the custom HTML block (just typing "html" into the search bar should bring it up for you). Place your cursor where you want to the block to be and click on the icon to add the block. (You can always rearrange blocks in your post using the up and down arrows that appear when you click on a block).

Paste the embed code that you copied from your archival object in the field that appears. Look for the "width" part of the code. It should read "800", which tells us the default width is 800 pixels.

You preview what the image looks like by clicking on the "preview" button next to the "HTML" button in the menu that appears when you click on the block. As you can see from the screenshot, 800 pixels does not fill the width of the post screen, and we cannot make text wrap around it, so we will be changing the width of the iframe.

To change the width, click on the HTML button in the menu and locate the width="800" part of the code (given in the snippet below).
<iframe src="https://digitalcollections.willamette.edu/mirador/viewer/index.html?manifest=https://digitalcollections.willamette.edu/server/iiif/5e6f1aa5-ebf9-46ae-85f3-8443a104eb58/manifest" title="Image viewer" width="800" height="600" allowfullscreen frameborder="0"></iframe>
Change the "800" to "100%". This will make the iframe (view screen) take up the full width of the post.
<iframe src="https://digitalcollections.willamette.edu/mirador/viewer/index.html?manifest=https://digitalcollections.willamette.edu/server/iiif/5e6f1aa5-ebf9-46ae-85f3-8443a104eb58/manifest" title="Image viewer" width="100%" height="600" allowfullscreen frameborder="0"></iframe>

Now you can preview your image and see that the iframe is now the full width of your post.

Don't forget to click the "save draft" button at the top of your workspace to save your entry!