<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WordPress &#8211; ptworld.net</title>
	<atom:link href="https://ptworld.net/blog/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://ptworld.net</link>
	<description>e-consultancy, research and publishing</description>
	<lastBuildDate>Tue, 08 Apr 2025 14:59:22 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>Introducing MakeStaticSite for website deployment</title>
		<link>https://ptworld.net/blog/introducing-makestaticsite-for-website-deployment/</link>
		
		<dc:creator><![CDATA[Paul]]></dc:creator>
		<pubDate>Wed, 21 Sep 2022 14:53:20 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[MakeStaticSite]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[shell scripts]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://ptworld.net/?p=1504</guid>

					<description><![CDATA[(from a technical perspective) Launch of MakeStaticSite.sh Website November 2022: A website dedicated to MakeStaticSite is now available at https://makestaticsite.sh/. It provides the latest version of the software, released under AGPL, along with various documentation to help getting started. Motivation <a class="more-link" href="https://ptworld.net/blog/introducing-makestaticsite-for-website-deployment/">Read More ...</a>]]></description>
										<content:encoded><![CDATA[
<p>(from a technical perspective)</p>



<h2 class="wp-block-heading">Launch of MakeStaticSite.sh Website</h2>



<p><strong>November 2022</strong>: A website dedicated to MakeStaticSite is now available at <a rel="noreferrer noopener" href="https://makestaticsite.sh/" target="_blank">https://makestaticsite.sh/</a>.  It provides the latest version of the software, released under AGPL, along with various documentation to help getting started.</p>



<h2 class="wp-block-heading">Motivation</h2>



<p>The process of developing this website has evolved considerably.  On setting it up a few years ago in the conventional manner using WordPress, I duly familiarised myself with routines for maintaining security and improving performance on a hosted platform.  However, there were several aspects that weren&#8217;t ideal: the live content was hosted remotely, albeit with backups; updating the site <em>in situ</em>, particularly for major redesigns, was inconvenient; and performance wasn&#8217;t always as good as expected.  Observing that most of the content was not dynamic in nature, I resolved to develop the site locally and then, as a separate process, deliver it as a largely static site. </p>



<p>The rationale for generating static sites has been around a long-time; I first tackled this more than 20 years ago, when I needed to generate a <a href="https://ptworld.net/portfolio/multimedia-languages#CD2Go">CD ROM from a CGI/Perl multimedia website</a>.  Nowadays, the field is mature; <a rel="noreferrer noopener" href="https://www.netlify.com/blog/2018/07/12/the-reign-of-static-site-generators/" target="_blank">a Netlify blog post</a> (Netlify is a cloud-based service where many static outputs end up) gives many valid reasons, rooted in the need for more responsive work processes.  Typically underpinned by a simple language called <a rel="noreferrer noopener" href="https://www.w3schools.io/file/markdown-introduction/" target="_blank">markdown</a>, there has been a surge in solutions; hence, <a rel="noreferrer noopener" href="https://jamstack.org/generators/" target="_blank">options for Jamstack</a> abound.  However, the processes tend to be heavily oriented to developers at the expense of content authors, issues I know first-hand from enabling web access to museum collections.</p>



<p>I wanted instead to support existing content management processes, i.e. to continue with creating and managing content in WordPress, and then &#8216;at the press of a button&#8217; generate and publish a static copy online.  There are already some solutions, including dedicated plugins such as <a rel="noreferrer noopener" href="https://wordpress.org/plugins/simply-static/" target="_blank">Simply Static</a>.  Tim Nash, having observed increasingly complexity with the Jamstack options, <a rel="noreferrer noopener" href="https://timnash.co.uk/blog-like-a-confused-hacker-2020/" target="_blank">has described</a> how he used <a rel="noreferrer noopener" href="https://github.com/WP2Static/wp2static" target="_blank">WP2Static</a> via <a rel="noreferrer noopener" href="https://wp-cli.org" target="_blank">WP-CLI</a>, the WordPress command-line interface, for a (relatively) simple and compact solution.  But I hesitate over the use of a WordPress plugin to generate the static site.  Apart from the ongoing issue of maintenance and compatibility with WP Core, plugins are not really necessary since a public-facing website should be <em>de facto</em> crawlable by a web spider and not require internal system information.  </p>



<p>And so I turned to general-purpose tools I could run from the command line.  Enter <a rel="noreferrer noopener" href="https://www.gnu.org/software/wget/" target="_blank">Wget</a>, a ubiquitous utility for retrieving and packaging any number of web pages for subsequent viewing.  I needed to configure it, add a few additional inputs, and then choose where to store the outputs.  This led naturally to delving into (<a rel="noreferrer noopener" href="https://tiswww.case.edu/php/chet/bash/bashtop.html" target="_blank">Bash</a>) shell scripting to bring it all together and I continued the process, adding deployment options and invoking more commands, particularly <a rel="noreferrer noopener" href="https://wp-cli.org" target="_blank">WP-CLI</a> to prep the WordPress output (and to include a version of the plugin, <a rel="noreferrer noopener" href="https://github.com/paultraf/wp-static-search" target="_blank">WP Static Search</a>, revised to work offline).  If you examine the source code of this page, you will see the result.</p>



<h2 class="wp-block-heading">Pipeline</h2>



<p>Shell scripting became a means to orchestrate the overall process, which is readily seen as a <em>pipeline</em> comprising a sequence of <em>phases</em>.  For example, one phases runs <tt>wget</tt> for the initial capture, whilst another re-runs <tt>wget</tt> to more completely capture a site.  In fact, many core web development processes can be incorporated, such as replacing certain internal-facing pages or sections with alternative content; and invoking command-line tools for validation and streamlining output.  As of version 0.21, there are ten phases altogether; and command-line options allow you to control the start phase and end phase.</p>



<p>The flowchart below illustrates an emerging pipeline (for the latest perspective, please refer to pages on <a rel="noreferrer noopener" href="https://makestaticsite.sh/in-depth/workflow/" target="_blank">workflow</a> and <a rel="noreferrer noopener" href="https://makestaticsite.sh/in-depth/workflow/phases/" target="_blank">phases</a>).</p>



<div class="wp-block-cp-timeline-content-timeline-block Cool-Content-Timeline"><div class="cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484"><style scoped="true">.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-vertical-timeline-body .story-time p{color: #333;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-horizontal-timeline-body .story-time p{color: #333;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-vertical-timeline-body::before{background: linear-gradient(to bottom, rgba(230, 230, 230, 0) 0%, #D91B3E 10%, #D91B3E 90%, rgba(230, 230, 230, 0) 100%);}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-horizontal-timeline-body .timeline-content::before{background: #D91B3E;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-horizontal-timeline-body .timeline-content::after{background: #D91B3E;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-vertical-timeline-body .timeline-content::before{background: #D91B3E !important;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-vertical-timeline-body.left .story-details::after{background: #D91B3E !important;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-vertical-timeline-body.right .story-time::after{background: #D91B3E !important;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-vertical-timeline-body .timeline-content .timeline-block-icon{background: #D91B3E !important;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-horizontal-timeline-body .timeline-content .timeline-block-icon{background: #D91B3E !important;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-vertical-timeline-body.both-sided .timeline-content .position-right .story-details::before{border-right-color: #D91B3E !important;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-vertical-timeline-body.both-sided .timeline-content .position-left  .story-details::before{border-left-color: #D91B3E !important;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-vertical-timeline-body.one-sided.left .timeline-content  .story-details::before{border-right-color: #D91B3E !important;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-vertical-timeline-body.one-sided.right .timeline-content  .story-details::before{border-left-color: #D91B3E !important;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-vertical-timeline-body .timeline-content  .story-details{border-color: #D91B3E !important;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-horizontal-timeline-body .timeline-content .ctl-row .ctl-6.timeline-block-detail::before{border-bottom-color: #D91B3E !important;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-horizontal-timeline-body .ctl-6.timeline-block-detail{border-top-color: #D91B3E !important;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-vertical-timeline-body .timeline-content  .timeline-block-icon{border-color: #D91B3EFF !important;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-horizontal-timeline-body .swiper-button-next{color: #D91B3E;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-horizontal-timeline-body .swiper-button-prev{color: #D91B3E;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .cool-horizontal-timeline-body .swiper-pagination-bullet-active{background: #D91B3E;}.cool-timeline-block-9f4fed9e-b053-4040-999f-b8d7bd2d2484 .icon-true .timeline-block-icon span.timeline-block-render-icon svg{fill: white;}</style><div class="cool-vertical-timeline-body both-sided left"><div class="cool-timeline-block-list">
<div class="wp-block-cp-timeline-content-timeline-block-child swiper-slide"><div class="timeline-content icon-false "><div class=" timeline-block-timeline ctl-row  position-right"><div class="ctl-6 timeline-block-time"><div class="story-time"><p>Setup</p></div></div><div class="timeline-block-icon"></div><div class="ctl-6 timeline-block-detail"><div class="story-details"><div class="story-image"><img decoding="async" src="https://ptworld.net/wp-content/uploads/2022/09/sample.cfg-part.png" alt="Extract from a sample configuration (text file) for MakeStaticSite shows options, row by row"/></div><div class="story-content"><h3>Configuration dialogue</h3><p>The first step is to run the <tt>setup.sh</tt> script, which guides the user in an interactive dialogue to specify a series of options. </p></div></div></div></div></div></div>



<div class="wp-block-cp-timeline-content-timeline-block-child swiper-slide"><div class="timeline-content icon-false "><div class=" timeline-block-timeline ctl-row  position-right"><div class="ctl-6 timeline-block-time"><div class="story-time"><p>Initialisation</p></div></div><div class="timeline-block-icon"></div><div class="ctl-6 timeline-block-detail"><div class="story-details"><div class="story-content"><h3>Configure </h3><p>The system reads and processes configuration options<br><ul><li>read runtime options</li><li>read configuration file options</li><li>prepare output layout</li> </ul></p></div></div></div></div></div></div>



<div class="wp-block-cp-timeline-content-timeline-block-child swiper-slide"><div class="timeline-content icon-false "><div class=" timeline-block-timeline ctl-row  position-right"><div class="ctl-6 timeline-block-time"><div class="story-time"><p>Prep the CMS</p></div></div><div class="timeline-block-icon"></div><div class="ctl-6 timeline-block-detail"><div class="story-details"><div class="story-content"><h3>CMS-specific streamlining</h3><p>Optionally use wp-cli to<br><ul><li>ensure nice permalinks</li><li>remove query strings</li><li>remote shortlinks</li><li>replace with static search</li></ul>(Currently WordPress-only, but modules could be developed for other CMS.) </p></div></div></div></div></div></div>



<div class="wp-block-cp-timeline-content-timeline-block-child swiper-slide"><div class="timeline-content icon-false "><div class=" timeline-block-timeline ctl-row  position-right"><div class="ctl-6 timeline-block-time"><div class="story-time"><p>Generate static site  </p></div></div><div class="timeline-block-icon"></div><div class="ctl-6 timeline-block-detail"><div class="story-details"><div class="story-content"><h3>Generate wget mirror (first run) </h3><p>Run wget with the supplied configuration options<br><ul><li>optionally incorporate further input files</li><li>optionally set up a zip files</li><li>store the mirror in its own directory with timestamp</li> </ul></p></div></div></div></div></div></div>



<div class="wp-block-cp-timeline-content-timeline-block-child swiper-slide"><div class="timeline-content icon-false "><div class=" timeline-block-timeline ctl-row  position-right"><div class="ctl-6 timeline-block-time"><div class="story-time"><p>Augment static site  </p></div></div><div class="timeline-block-icon"></div><div class="ctl-6 timeline-block-detail"><div class="story-details"><div class="story-content"><h3>Further processing with wget </h3><p>Run wget with the supplied configuration options to fill in gaps<br><ul><li>optionally crawl static files for further URLs</li><li>Filter the URLs to retrieve only assets (multimedia files, etc.)</li><li>Re-run wget on the additional URLs</li></ul></p></div></div></div></div></div></div>



<div class="wp-block-cp-timeline-content-timeline-block-child swiper-slide"><div class="timeline-content icon-false "><div class=" timeline-block-timeline ctl-row  position-right"><div class="ctl-6 timeline-block-time"><div class="story-time"><p>Optimise static site  </p></div></div><div class="timeline-block-icon"></div><div class="ctl-6 timeline-block-detail"><div class="story-details"><div class="story-content"><h3>Further post-processing for deployment </h3><p>Further post-wget processing<br><ul><li>convert feeds to be XML files and modify references accordingly</li><li>Apply HTML Tidy to make more standards-compliant and use pretty-print (dependent on options)</li></ul>An accessibility validator could be added here.</p></div></div></div></div></div></div>



<div class="wp-block-cp-timeline-content-timeline-block-child swiper-slide"><div class="timeline-content icon-false "><div class=" timeline-block-timeline ctl-row  position-right"><div class="ctl-6 timeline-block-time"><div class="story-time"><p>Create an offline zip archive</p></div></div><div class="timeline-block-icon"></div><div class="ctl-6 timeline-block-detail"><div class="story-details"><div class="story-content"><h3>Create a custom zip based on the mirror</h3><p>The mirror acts as the basis for a zip archive, ready for uploading with the site or other distribution channels.</p></div></div></div></div></div></div>



<div class="wp-block-cp-timeline-content-timeline-block-child swiper-slide"><div class="timeline-content icon-false "><div class=" timeline-block-timeline ctl-row  position-left"><div class="ctl-6 timeline-block-time"><div class="story-time"><p>Augment</p></div></div><div class="timeline-block-icon"></div><div class="ctl-6 timeline-block-detail"><div class="story-details"><div class="story-content"><h3>Further additions</h3><p>Optionally augment the static mirror with <em>snippets</em>, substituting chunks of HTML in particular places according to the use of snippet tags.  These will augment the zip file also.<br>Additionally, allow the inclusion of further files that might not necessarily be static files.</p></div></div></div></div></div></div>



<div class="wp-block-cp-timeline-content-timeline-block-child swiper-slide"><div class="timeline-content icon-false "><div class=" timeline-block-timeline ctl-row  position-right"><div class="ctl-6 timeline-block-time"><div class="story-time"><p>Deploy</p></div></div><div class="timeline-block-icon"></div><div class="ctl-6 timeline-block-detail"><div class="story-details"><div class="story-content"><h3>Finalise and deploy locally or remote </h3><p>Optionally copy over additional <br><ul><li>Optionally copy over additional files, which might be scripts to provide missing interactivity</li><li>Finally deploy on local or remote server using rsync</li></ul></p></div></div></div></div></div></div>
</div></div></div></div>



<h2 class="wp-block-heading">Extending the usefulness</h2>



<p>MakeStaticSite is a prototype that was initially developed for individuals who are creating and maintaining websites on a personal computer.  However, the question soon arose: how might a team of content authors and editors be supported?  (The answer is: yes!)</p>



<p>For example, what if this site is to have multiple contributors?  In this case, the most straightforward approach is to set up or continue hosting with a third-party hosting provider, in the usual way.  This means those who are creating and managing content carry on as normal through the dashboard.  The main change is to separate the editing environment from the public site, which can be achieved by restricting access by some means of web authentication.  Then, run MakeStaticSite to deploy the static site to the public, whether on the server or remotely.  This approach ensures continuity; the only additional consideration is how to initiate MakeStaticSite once changes have been made — from within the CMS or external to it?</p>



<p>An initial test has shown that once set up, the process of maintenance and deployment can be carried out entirely from within WordPress.  This can be achieved by running the script under the terminal emulator <a rel="noreferrer noopener" href="https://wordpress.org/plugins/wpterm/" target="_blank">WPTerm</a> (MakeStaticSite has an option to run &#8216;unattended&#8217;, which makes default selections).  This depends on appropriate support for MakeStaticSite on the server; for shared hosting, the versions of required components, particularly Wget, may be somewhat old and, of course, for any serious use with a third party, access to WPTerm should be properly secured as instructed.  It&#8217;s preferable to keep the running of MakeStaticSite on a personal computer, an arrangement that has been used for <a href="https://fuengsin.org/" target="_blank" rel="noreferrer noopener">fuengsin.org</a>.</p>



<p>However, hosting with a third party means that the data is no longer immediately under our control; although a mixture of database replication and file synchronization can compensate, there&#8217;s some loss of independence.  Perhaps a better solution lies in p2p networks, but that&#8217;s an area I have yet to explore &#8230;</p>



<p>For now, this tool serves my needs well and I hope it is helpful to others.  Please refer to the <a href="https://makestaticsite.sh/" data-type="page" data-id="1499">MakeStaticSite project site</a> for further information.</p>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Software</title>
		<link>https://ptworld.net/projects/software/</link>
		
		<dc:creator><![CDATA[Paul]]></dc:creator>
		<pubDate>Tue, 07 Jun 2022 13:15:13 +0000</pubDate>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[languages]]></category>
		<category><![CDATA[lifecycle]]></category>
		<category><![CDATA[MakeStaticSite]]></category>
		<category><![CDATA[methodologies]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[open standards]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[publishing]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://ptworld.net/?page_id=989</guid>

					<description><![CDATA[The digital world is made up of software and hardware and increasingly permeates our lives. Analogous to making material donations, many developers offer software freely for the wider community in the hope that others may benefit also. They typically do <a class="more-link" href="https://ptworld.net/projects/software/">Read More ...</a>]]></description>
										<content:encoded><![CDATA[
<p>The digital world is made up of software and hardware and increasingly permeates our lives.  Analogous to making material donations, many developers offer software freely for the wider community in the hope that others may benefit also.  They typically do this by releasing software under an <a rel="noreferrer noopener" href="https://opensource.org/osd" target="_blank">open source</a> license.  </p>



<p>The generous ethos is admirable.  Indeed, whereas the spotlight has recently been shone on software developers to become more aware of certain ethical issues, along with pressure to change their practices, there is in fact much to be learnt from that community.  I have tried to intimate this in <a rel="noreferrer noopener" href="https://www.chezpaul.org.uk/interfth/osswisdom.html" target="_blank">Open Sources: A Higher Consciousness in Software Development</a>, a paper I gave at an unusual <a rel="noreferrer noopener" href="https://www.chezpaul.org.uk/interfth/birdofheaven.html" target="_blank">conference on the theme of wisdom</a>.</p>



<p>As a developer myself, I am largely <a rel="noreferrer noopener" href="https://paultrafford.blogspot.com/2007/01/zx-spectrum-and-scrabble-nostalgia.html" target="_blank">self-taught since the 1980s</a>.  It may explain why, when solving programming problems, I can be somewhat unconventional and occasionally original.</p>



<h2 class="wp-block-heading">Open Source contributions</h2>



<p>I&#8217;m not a prolific or fluent coder, but have contributed to a few open source projects and am currently working on two.</p>



<ul class="wp-block-list">
<li><strong><a href="https://ptworld.net/projects/software/makestaticsite/" data-type="page" data-id="1499">MakeStaticSite</a></strong>, a static site generator and deployer, is a Bash script that I already use to generate static versions of locally-developed WordPress sites (like this one and <a href="https://research.siga.la" target="_blank" rel="noreferrer noopener">research.siga.la</a>).  It is release as free/open source software under AGPL v.3 and is <a href="https://makestaticsite.sh/getting-started/installing/">available for download</a>.</li>



<li><strong>WP Offline Search</strong> is a further refinement of my <a href="https://github.com/paultraf/wp-static-search/" target="_blank" rel="noreferrer noopener">fork of WP Static Search</a> by Gergely Szerovay, who developed a WordPress plugin based on <a href="https://lunrjs.com/" target="_blank" rel="noreferrer noopener">Lunr.js</a>. As I&#8217;ve not received any response to my pull requests and have reworked quite a lot of the code, I changed the name and intend to set up a new repository.</li>



<li><a href="https://github.com/jcdarwin/epubcheck-web" target="_blank" rel="noreferrer noopener">epubcheck-web</a> (contributor) – enabling standards-based checking of ePub documents to help self-publishing, motivated by <a href="https://ptworld.net/portfolio/publishing-systems/#ebook">my experiences of self-publishing a Kindle book</a> (see especially the <a href="https://ptworld.net/portfolio/publishing-systems/#ebook" data-type="page" target="_blank" rel="noreferrer noopener">EPUB conversion report slides</a>).</li>
</ul>



<p>I hope to share the Sigala code likewise, once it has reached a certain level of maturity. </p>



<p>For my work using other people&#8217;s software, take a look at the <a href="https://ptworld.net/portfolio/">portfolio</a>.</p>



<h3 class="wp-block-heading">Legacy software, but enduring paradigms</h3>



<p>At the turn of the millennium, there was no universal means for authors to edit and maintain their content through their web browser.  The technical solutions that existed tended to work only on specific platforms, carried a fee, or else require a Java plugin.</p>



<p>In response, I devised one, <a rel="noreferrer noopener" href="https://web.archive.org/web/20011205040442/http://users.ox.ac.uk/~pault/netwedit/index.html" target="_blank">NetWedit</a>, possibly the world&#8217;s first cross-platform JavaScript-based solution, released under <a rel="noreferrer noopener" href="https://fossa.com/blog/open-source-software-licenses-101-lgpl-license/" target="_blank">GNU LGPL</a>, in the days when I still thought that the first &#8216;L&#8217; stood for &#8216;library&#8217; rather than &#8216;lesser&#8217;.  It was experimental and used a crafty method, but it worked well enough for members of Oxford University&#8217;s Theology Faculty to maintain their profiles for a <a href="https://ptworld.net/portfolio/theology-faculty-tlr/" data-type="page" data-id="456">teach and learning resources database</a>. </p>



<p>As browser DOM support improved, I subsequently enhanced the functionality, but kept the same basic user interface, to produce <a rel="noreferrer noopener" href="https://web.archive.org/web/20100109060438/http://users.ox.ac.uk/~pault/rtwedit/" target="_blank">RTWedit</a>, which was incorporated into early versions of WebLearn, Oxford University&#8217;s centrally-hosted virtual learning environment.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img fetchpriority="high" decoding="async" width="892" height="637" src="https://ptworld.net/wp-content/uploads/2022/08/OUCS-IT_Learning_WebLearn_editor.png" alt="Rich text editing in a pop-up window with basic functions to apply bold and italic, to create hyperlinks and to insert images" class="wp-image-1353" style="width:669px;height:478px" srcset="https://ptworld.net/wp-content/uploads/2022/08/OUCS-IT_Learning_WebLearn_editor.png 892w, https://ptworld.net/wp-content/uploads/2022/08/OUCS-IT_Learning_WebLearn_editor-300x214.png 300w, https://ptworld.net/wp-content/uploads/2022/08/OUCS-IT_Learning_WebLearn_editor-768x548.png 768w, https://ptworld.net/wp-content/uploads/2022/08/OUCS-IT_Learning_WebLearn_editor-500x357.png 500w, https://ptworld.net/wp-content/uploads/2022/08/OUCS-IT_Learning_WebLearn_editor-800x571.png 800w" sizes="(max-width: 892px) 100vw, 892px" /><figcaption class="wp-element-caption">An early example (2005-7) of rich text editing in WebLearn, using RTWedit. <br>(Screenshot of a slide from OUCS IT Learning Programme training course led by Paul Trafford.)</figcaption></figure>
</div>


<p>Standards have moved on and browsers only maintain limited backwards compatibility, so my tools don&#8217;t work in a standard desktop today, but the approach of working from first principles is ever-relevant.  I&#8217;ve recorded some notes in a retrospective piece, <a rel="noreferrer noopener" href="https://paultrafford.blogspot.com/2021/04/adventures-in-readwrite-web.html" target="_blank">Adventures in the Read/Write Web</a>. </p>



<p>Nowadays, we take for granted the fact that we can write content in systems such as WordPress and Drupal using a rich text editor with an experience similar to that in a word processor. Such editors, based on packages such as <a rel="noreferrer noopener" href="https://www.tiny.cloud" target="_blank">TinyMCE</a> and <a rel="noreferrer noopener" href="https://ckeditor.com" target="_blank">CK Editor</a> are still written in JavaScript.</p>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Website (technical)</title>
		<link>https://ptworld.net/about/website-technical/</link>
		
		<dc:creator><![CDATA[Paul]]></dc:creator>
		<pubDate>Mon, 30 May 2022 18:25:07 +0000</pubDate>
				<category><![CDATA[automation]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[production]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[shell scripts]]></category>
		<category><![CDATA[static]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://ptworld.net/?page_id=794</guid>

					<description><![CDATA[This website has been created in WordPress and continues to be maintained in this content management system. However, it is published as a set of static web pages using MakeStaticSite, a custom system comprising a set of Bash shell scripts, <a class="more-link" href="https://ptworld.net/about/website-technical/">Read More ...</a>]]></description>
										<content:encoded><![CDATA[
<p></p>



<p>This website has been created in WordPress and continues to be maintained in this content management system.  However, it is published as a set of static web pages using <a href="https://ptworld.net/projects/software/makestaticsite/" data-type="page" data-id="1499">MakeStaticSite</a>, a custom system comprising a set of Bash shell scripts, to be released as open source software.</p>



<h2 class="wp-block-heading">WordPress plugins</h2>



<p>The following plugins have been used for building the site.</p>



<ul class="wp-block-list"><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/jquery-collapse-o-matic/" target="_blank">Collapse-O-Matic</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/enable-media-replace/" target="_blank">Enable Media Replace</a><a rel="noreferrer noopener" href="https://wordpress.org/plugins/teachpress/" target="_blank">https://wordpress.org/plugins/teachpress/</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/flip-boxes/" target="_blank">Flip Boxes</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/hello-dolly/" target="_blank">Hello Dolly</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/kadence-blocks/" target="_blank">Kadence Blocks – Gutenberg Blocks for Page Builder Features</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/pages-with-category-and-tag/" target="_blank">Pages with category and tag</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/pdfjs-viewer-shortcode/" target="_blank">PDFjs Viewer &#8211; Embed PDFs</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/perform/" target="_blank">Perform &#8211; Optimize Performance</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/really-simple-ssl/" target="_blank">Really Simple SSL</a></li><li>Shortlink Removal</li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/simple-page-ordering/" target="_blank">Simple Page Ordering</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/teachpress/" target="_blank">teachPress</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/timeline-block/" target="_blank">Timeline Block</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/visual-portfolio/" target="_blank">Visual Portfolio, Posts &amp; Image Gallery</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/wp-last-modified-info/" target="_blank">WP Last Modified Info</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/wp-rollback/" target="_blank">WP Rollback</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/wp-show-more/" target="_blank">WP show more</a></li><li><a rel="noreferrer noopener" href="https://wordpress.org/plugins/wp-sitemap-page/" target="_blank">WP Sitemap Page</a></li><li><a href="https://github.com/paultraf/wp-static-search">WP Static Search (fork)</a></li><li><a href="https://wordpress.org/plugins/insert-headers-and-footers/">WPCode &#8211; Insert Headers, Footers, and Code Snippets</a><br></li></ul>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>MHS/HSM Website</title>
		<link>https://ptworld.net/portfolio/mhs-hsm-website/</link>
		
		<dc:creator><![CDATA[Paul]]></dc:creator>
		<pubDate>Tue, 17 May 2022 16:42:08 +0000</pubDate>
				<category><![CDATA[API]]></category>
		<category><![CDATA[collections]]></category>
		<category><![CDATA[EMu]]></category>
		<category><![CDATA[exhibitions]]></category>
		<category><![CDATA[history of science]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[museums]]></category>
		<category><![CDATA[Oxford]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://ptworld.net/?page_id=469</guid>

					<description><![CDATA[2009-2012, 2014-2020 Role: Systems developer (as a staff member of the Museum of the History of Science, University of Oxford) Brief: Develop and maintain the main Website for the Museum (but not the social media channels) and integrate the collections <a class="more-link" href="https://ptworld.net/portfolio/mhs-hsm-website/">Read More ...</a>]]></description>
										<content:encoded><![CDATA[
<p></p>



<a id="mhsweb"></a>



<p>2009-2012, 2014-2020</p>



<p><strong>Role</strong>: Systems developer (as a staff member of the Museum of the History of Science, University of Oxford)</p>



<p><strong>Brief</strong>: Develop and maintain the main Website for the Museum (but not the social media channels) and integrate the collections management system (KE EMu).  </p>



<p><strong>Solution</strong>: I oversaw the redevelopment of the WordPress site in 2010, mostly into one multisite instance, including previously disparate elements such as the collections search, and then its gradual refinement through to 2012. I overhauled the server provision, standardising on Debian Linux, in University data centres. </p>



<p>Security was enhanced at various levels, through content caches, script hardening, Apache mod Security with a fine-tuned ruleset, and integration with the University&#8217;s single sign-on system, first with Stanford Webauth and then with Shibboleth (to better support federation), registering and configuring a Service Provider (Apache module) and then configuring a WordPress plugin to invoke Shibboleth for authentication.</p>



<p>Subsequent work on the site focused on the design and instantiation of content, such as special exhibition sites (see <a href="#backfromthedead">example</a> below). From 2017 onwards, it mainly concerned the digital preservation of legacy online exhibits during the migration to a centrally managed service, to which I also contributed substantially.</p>



<p><strong>URLs</strong><br><a href="https://www.mhs.ox.ac.uk/">https://www.mhs.ox.ac.uk/</a> (main site until 2018), home page now redirecting to: <br><a rel="noreferrer noopener" href="https://hsm.ox.ac.uk/" target="_blank">https://hsm.ox.ac.uk/</a> (main site from 2019 onwards).<br><a rel="noreferrer noopener" href="https://blogs.mhs.ox.ac.uk/" target="_blank">https://blogs.mhs.ox.ac.uk/</a> <br>Slides: <a href="http://www.slideshare.net/paultraf/ke-user-group-2011-showcase-notes">integration of the collections database using the KE EMu PHP5 API</a>.</p>


<div class="wp-block-visual-portfolio">
<div class="vp-portfolio vp-uid-b0008aac vp-id-Z1FraGi"
	data-vp-layout="tiles" data-vp-content-source="images" data-vp-items-style="fade" data-vp-items-click-action="popup_gallery" data-vp-items-gap="15" data-vp-items-gap-vertical="" data-vp-pagination="load-more" data-vp-next-page-url="" data-vp-tiles-type="3|1,1|" >
	<div class="vp-portfolio__preloader-wrap">
		<div class="vp-portfolio__preloader">
			<img decoding="async" loading="eager" src="https://ptworld.net/wp-content/plugins/visual-portfolio/assets/images/logo-dark.svg" alt="Visual Portfolio, Posts &amp; Image Gallery for WordPress" width="20" height="20" data-skip-lazy>
		</div>
	</div>
		<div class="vp-portfolio__items-wrap">
			
<div class="vp-portfolio__items vp-portfolio__items-style-fade vp-portfolio__items-show-overlay-hover">

		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-42fc93ce" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png 965w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-289x300.png 289w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-768x798.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-500x520.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-800x832.png 800w" data-vp-popup-img-size="965x1003" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-800x832.png" data-vp-popup-md-img-size="800x832" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-500x520.png" data-vp-popup-sm-img-size="500x520">
			<h3 class="vp-portfolio__item-popup-title">MHS Home page 2012</h3>
				<div class="vp-portfolio__item-popup-description">I created a new WordPress theme for the Museum of the History of Science in 2010, based on a set of static HTML and CSS files. 
<br />
The rotating banner image (here displaying orrery by Thomas Wright) showcases objects and exhibitions. 
<br />
I brought together several separate WP sites into a single WP multisite setup and in 2011 integrated Webauth for single sign-on.
<br />
This screenshot, taken two years after the relaunch, shows how the site was kept up to date.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png"
			>
	
		<noscript><img decoding="async" width="965" height="1003" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png" class="wp-image-471" alt="The home page for the Museum of the History of Science, 2012. Its header displays the Museum&#039;s logo and essential details. Underneath is a banner image, the main navigation menu with various sections underneath on current exhibitions, news, featured objects, events and a search box" srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png 965w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-289x300.png 289w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-768x798.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-500x520.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-800x832.png 800w" sizes="(max-width: 965px) 100vw, 965px" /></noscript><img decoding="async" width="965" height="1003" src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png" class="wp-image-471 vp-lazyload" alt="The home page for the Museum of the History of Science, 2012. Its header displays the Museum&#039;s logo and essential details. Underneath is a banner image, the main navigation menu with various sections underneath on current exhibitions, news, featured objects, events and a search box" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTY1IiBoZWlnaHQ9IjEwMDMiIHZpZXdCb3g9IjAgMCA5NjUgMTAwMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png 965w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-289x300.png 289w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-768x798.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-500x520.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-800x832.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	MHS Home page 2012</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-6349a511" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar.png 935w, https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-290x300.png 290w, https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-768x793.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-500x517.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-800x827.png 800w" data-vp-popup-img-size="935x966" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-800x827.png" data-vp-popup-md-img-size="800x827" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-500x517.png" data-vp-popup-sm-img-size="500x517">
			<h3 class="vp-portfolio__item-popup-title">MHS: History (with the ATBar)</h3>
				<div class="vp-portfolio__item-popup-description">The JISC TechDis ATBar provides an accessibility toolkit to facilitate page reading, usually activated via an &#8216;I&#8217; icon.  
<br />
Pages were also tested using the JAWS screen reader (Freedom Scientific). 
</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar.png"
			>
	
		<noscript><img decoding="async" width="935" height="966" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar.png" class="wp-image-472" alt="Webpage describing the history of the Museum, with the ATBar for accessibility displayed along the top" srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar.png 935w, https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-290x300.png 290w, https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-768x793.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-500x517.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-800x827.png 800w" sizes="(max-width: 935px) 100vw, 935px" /></noscript><img decoding="async" width="935" height="966" src="https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar.png" class="wp-image-472 vp-lazyload" alt="Webpage describing the history of the Museum, with the ATBar for accessibility displayed along the top" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTM1IiBoZWlnaHQ9Ijk2NiIgdmlld0JveD0iMCAwIDkzNSA5NjYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PC9zdmc+" data-src="https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar.png 935w, https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-290x300.png 290w, https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-768x793.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-500x517.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar-800x827.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_History-JISC_Techdis_Accessibility_toolbar.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	MHS: History (with the ATBar)</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-e9d0895f" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search.png 967w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-300x217.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-768x554.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-500x361.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-800x577.png 800w" data-vp-popup-img-size="967x698" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-800x577.png" data-vp-popup-md-img-size="800x577" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-500x361.png" data-vp-popup-sm-img-size="500x361">
			<h3 class="vp-portfolio__item-popup-title">MHS Collections Search</h3>
				<div class="vp-portfolio__item-popup-description">I extended the custom MHS WordPress theme to provide access to the EMu collections database, using the PHP API.
<br />
Two kinds of search are offered: free text (basic and advanced, which provides boolean search), plus field search.
<br />
Result options include: show thumbnails and only return records that have images.
<br />
A presentation on the integration was given at the KE User Group in 2011, 
<br />
https://www.slideshare.net/paultraf/ke-user-group-2011-showcase-notes
<br />
Screenshot from the Museum of the History of Science, University of Oxford, taken in 2012.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="967" height="698" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search.png" class="wp-image-596" alt="Basic search page for the MHS collections with a single search box (with tick box options for &#039;show thumbnails&#039; and &#039;images only&#039;. Underneath are links and descriptions for advanced and field searches." srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search.png 967w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-300x217.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-768x554.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-500x361.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-800x577.png 800w" sizes="auto, (max-width: 967px) 100vw, 967px" /></noscript><img decoding="async" width="967" height="698" src="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search.png" class="wp-image-596 vp-lazyload" alt="Basic search page for the MHS collections with a single search box (with tick box options for &#039;show thumbnails&#039; and &#039;images only&#039;. Underneath are links and descriptions for advanced and field searches." srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTY3IiBoZWlnaHQ9IjY5OCIgdmlld0JveD0iMCAwIDk2NyA2OTgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PC9zdmc+" data-src="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search.png 967w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-300x217.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-768x554.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-500x361.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search-800x577.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue_search.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	MHS Collections Search</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-c865bf80" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue.png 965w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-300x277.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-768x710.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-500x462.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-800x739.png 800w" data-vp-popup-img-size="965x892" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-800x739.png" data-vp-popup-md-img-size="800x739" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-500x462.png" data-vp-popup-sm-img-size="500x462">
			<h3 class="vp-portfolio__item-popup-title">MHS Collections: Field Search</h3>
				<div class="vp-portfolio__item-popup-description">This is the field search.  It is an option mainly intended for specialists.
<br />
Screenshot from the Museum of the History of Science, University of Oxford, taken in 2012.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="965" height="892" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue.png" class="wp-image-595" alt="Field search page for the MHS collections with catalogue fields such as inventory number, title, creation data, material." srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue.png 965w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-300x277.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-768x710.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-500x462.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-800x739.png 800w" sizes="auto, (max-width: 965px) 100vw, 965px" /></noscript><img decoding="async" width="965" height="892" src="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue.png" class="wp-image-595 vp-lazyload" alt="Field search page for the MHS collections with catalogue fields such as inventory number, title, creation data, material." srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTY1IiBoZWlnaHQ9Ijg5MiIgdmlld0JveD0iMCAwIDk2NSA4OTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PC9zdmc+" data-src="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue.png 965w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-300x277.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-768x710.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-500x462.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue-800x739.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_EMu_catalogue.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	MHS Collections: Field Search</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-239065b5" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view.png 962w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-295x300.png 295w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-768x781.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-500x508.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-800x813.png 800w" data-vp-popup-img-size="962x978" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-800x813.png" data-vp-popup-md-img-size="800x813" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-500x508.png" data-vp-popup-sm-img-size="500x508">
			<h3 class="vp-portfolio__item-popup-title">MHS Steampunk exhibition</h3>
				<div class="vp-portfolio__item-popup-description">Steampunk was the most popular exhibition that the Museum of the History of Science has ever hosted. 
<br />
This microsite, hastily put together, is shown here for comparison with the next slide.  Note the theme elements &mdash; header, sidebar, and so on.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="962" height="978" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view.png" class="wp-image-473" alt="Steampunk exhibition at the Museum of the History of Science, featuring thumbnails of a selection of objects" srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view.png 962w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-295x300.png 295w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-768x781.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-500x508.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-800x813.png 800w" sizes="auto, (max-width: 962px) 100vw, 962px" /></noscript><img decoding="async" width="962" height="978" src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view.png" class="wp-image-473 vp-lazyload" alt="Steampunk exhibition at the Museum of the History of Science, featuring thumbnails of a selection of objects" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTYyIiBoZWlnaHQ9Ijk3OCIgdmlld0JveD0iMCAwIDk2MiA5NzgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PC9zdmc+" data-src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view.png 962w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-295x300.png 295w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-768x781.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-500x508.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view-800x813.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2012view.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	MHS Steampunk exhibition</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-05489773" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view.png 1070w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-300x272.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-1024x928.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-768x696.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-500x453.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-800x725.png 800w" data-vp-popup-img-size="1070x970" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-800x725.png" data-vp-popup-md-img-size="800x725" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-500x453.png" data-vp-popup-sm-img-size="500x453">
			<h3 class="vp-portfolio__item-popup-title">MHS Steampunk exhibition &#8211; archive</h3>
				<div class="vp-portfolio__item-popup-description">Ten years later, the Museum has been rebranded and migrated to a centrally-managed system.  
<br />
To preserve the exhibition site and ensure consistency of branding, a new template was created on the old site, featuring the new logo and marked as &#8216;archive&#8217;.  
<br />
The removal of the old header and sidebars, makes for a comparatively clean and simple layout &mdash; and the thumbnail strip looks okay.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1070" height="970" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view.png" class="wp-image-474" alt="Steampunk exhibition at the Museum of the History of Science - archived version with sidebars removed" srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view.png 1070w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-300x272.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-1024x928.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-768x696.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-500x453.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-800x725.png 800w" sizes="auto, (max-width: 1070px) 100vw, 1070px" /></noscript><img decoding="async" width="1070" height="970" src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view.png" class="wp-image-474 vp-lazyload" alt="Steampunk exhibition at the Museum of the History of Science - archived version with sidebars removed" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA3MCIgaGVpZ2h0PSI5NzAiIHZpZXdCb3g9IjAgMCAxMDcwIDk3MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view.png 1070w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-300x272.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-1024x928.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-768x696.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-500x453.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view-800x725.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_exhibition-2022view.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	MHS Steampunk exhibition &#8211; archive</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-60fa080b" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view.png 1081w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-300x238.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-1024x811.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-768x608.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-500x396.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-800x633.png 800w" data-vp-popup-img-size="1081x856" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-800x633.png" data-vp-popup-md-img-size="800x633" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-500x396.png" data-vp-popup-sm-img-size="500x396">
			<h3 class="vp-portfolio__item-popup-title">MHS Steampunk Live Mannequin</h3>
				<div class="vp-portfolio__item-popup-description">The archival process retains the functionality of the original site.  Here we are viewing a lightbox slide from a Steampunk catwalk.  
<br />
I edited the original photo (by Keiko Ikeuchi) and inverted it, fading the current (visitors) to black and white of the past, whilst retaining the vibrant colour of the Victorian soldier, as he seemingly gazes at the historical crowd.
<br />
I created the effect using MS Image Composer.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1081" height="856" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view.png" class="wp-image-475" alt="A lightbox slide from the MHS Steampunk exhibition website. It shows the back of a Victorian soldier, dressed in a red and black uniform, standing on a plinth in a gallery, looking at a group of visitors nestled among the display cases" srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view.png 1081w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-300x238.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-1024x811.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-768x608.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-500x396.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-800x633.png 800w" sizes="auto, (max-width: 1081px) 100vw, 1081px" /></noscript><img decoding="async" width="1081" height="856" src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view.png" class="wp-image-475 vp-lazyload" alt="A lightbox slide from the MHS Steampunk exhibition website. It shows the back of a Victorian soldier, dressed in a red and black uniform, standing on a plinth in a gallery, looking at a group of visitors nestled among the display cases" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA4MSIgaGVpZ2h0PSI4NTYiIHZpZXdCb3g9IjAgMCAxMDgxIDg1NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view.png 1081w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-300x238.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-1024x811.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-768x608.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-500x396.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view-800x633.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_Steampunk_mannequin-2022view.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	MHS Steampunk Live Mannequin</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-414f3ed4" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012.png 902w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-279x300.png 279w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-768x825.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-500x537.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-800x859.png 800w" data-vp-popup-img-size="902x969" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-800x859.png" data-vp-popup-md-img-size="800x859" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-500x537.png" data-vp-popup-sm-img-size="500x537">
			<h3 class="vp-portfolio__item-popup-title">The Renaissance in Astronomy</h3>
				<div class="vp-portfolio__item-popup-description">A dedicated template was created for the special exhibition at the Museum, maintaining consistency with the over theme design.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="902" height="969" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012.png" class="wp-image-476" alt="The Renaissance in Astronomy special exhibition home page at the Museum of the History of Science, with an introduction, featured image and menu links. It is styled with a darker background." srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012.png 902w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-279x300.png 279w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-768x825.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-500x537.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-800x859.png 800w" sizes="auto, (max-width: 902px) 100vw, 902px" /></noscript><img decoding="async" width="902" height="969" src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012.png" class="wp-image-476 vp-lazyload" alt="The Renaissance in Astronomy special exhibition home page at the Museum of the History of Science, with an introduction, featured image and menu links. It is styled with a darker background." srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTAyIiBoZWlnaHQ9Ijk2OSIgdmlld0JveD0iMCAwIDkwMiA5NjkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PC9zdmc+" data-src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012.png 902w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-279x300.png 279w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-768x825.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-500x537.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012-800x859.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_Renaissance_in_Astronomy-2012.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	The Renaissance in Astronomy</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-c55671ba" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs.png 997w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-300x249.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-768x639.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-500x416.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-800x665.png 800w" data-vp-popup-img-size="997x829" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-800x665.png" data-vp-popup-md-img-size="800x665" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-500x416.png" data-vp-popup-sm-img-size="500x416">
			<h3 class="vp-portfolio__item-popup-title">MHS Blogs</h3>
				<div class="vp-portfolio__item-popup-description">A further WordPress multisite setup was added, dedicated to blogs, designed for separate administration.
<br />
Blogs were set up for marketing (&#8216;Inside MHS Oxford&#8217;) and for staff and student projects, for reflection and dissemination.
<br />
Screenshot from the Museum of the History of Science, University of Oxford.
</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="997" height="829" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs.png" class="wp-image-609" alt="An index page for MHS blogs, featuring &#039;Inside MHS Oxford&#039;, &#039;For the Love of it&#039; (on scientific objects), &#039;Astrolabes in Medieval Jewish Culture&#039;, etc." srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs.png 997w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-300x249.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-768x639.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-500x416.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-800x665.png 800w" sizes="auto, (max-width: 997px) 100vw, 997px" /></noscript><img decoding="async" width="997" height="829" src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs.png" class="wp-image-609 vp-lazyload" alt="An index page for MHS blogs, featuring &#039;Inside MHS Oxford&#039;, &#039;For the Love of it&#039; (on scientific objects), &#039;Astrolabes in Medieval Jewish Culture&#039;, etc." srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTk3IiBoZWlnaHQ9IjgyOSIgdmlld0JveD0iMCAwIDk5NyA4MjkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PC9zdmc+" data-src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs.png 997w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-300x249.png 300w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-768x639.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-500x416.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs-800x665.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/MHS_Blogs.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	MHS Blogs</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
</div>
		</div>
		
</div>
</div>


<p> &#8211;</p>



<h2 class="wp-block-heading" id="backfromthedead">MHS Special Exhibition: Back from the Dead &#8211; Demystifying Antibiotics</h2>



<p><strong>2016</strong></p>



<p><strong>Brief</strong>: To provide a website to accompany the Special Exhibition at the Museum of the History of Science (since renamed, History of Science Museum).  Content needed to be easy to maintain by staff in various teams.</p>



<p><strong>Solution</strong>: Using the existing WP multisite infrastructure I was able to create a number of special exhibition sites relatively easily, using responsive off-the-shelf themes.  The basic structure was up and running very quickly and could be refined on an ongoing basis.  Care was taken to ensure that educational aspects, especially, were made accessible.</p>



<p><strong>URL</strong>: <a href="https://www.mhs.ox.ac.uk/backfromthedead/" target="_blank" rel="noreferrer noopener">https://www.mhs.ox.ac.uk/backfromthedead/</a> </p>


<div class="wp-block-visual-portfolio">
<div class="vp-portfolio vp-uid-b59eb1d7 vp-id-1B6zKX"
	data-vp-layout="tiles" data-vp-content-source="images" data-vp-items-style="fade" data-vp-items-click-action="popup_gallery" data-vp-items-gap="15" data-vp-items-gap-vertical="" data-vp-pagination="load-more" data-vp-next-page-url="" data-vp-tiles-type="3|1,1|" >
	<div class="vp-portfolio__preloader-wrap">
		<div class="vp-portfolio__preloader">
			<img decoding="async" loading="eager" src="https://ptworld.net/wp-content/plugins/visual-portfolio/assets/images/logo-dark.svg" alt="Visual Portfolio, Posts &amp; Image Gallery for WordPress" width="20" height="20" data-skip-lazy>
		</div>
	</div>
		<div class="vp-portfolio__items-wrap">
			
<div class="vp-portfolio__items vp-portfolio__items-style-fade vp-portfolio__items-show-overlay-hover">

		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-0c595f6d" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png 1187w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-300x248.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-1024x846.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-768x635.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-500x413.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-800x661.png 800w" data-vp-popup-img-size="1187x981" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-800x661.png" data-vp-popup-md-img-size="800x661" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-500x413.png" data-vp-popup-sm-img-size="500x413">
			<h3 class="vp-portfolio__item-popup-title">Back from the Dead: Exhibition home page</h3>
				<div class="vp-portfolio__item-popup-description">The History of Science Museum&#8217;s Special Exhibition, &#8216;Back from the Dead: Demystifying Antibiotics&#8217;, concerned the fight against bacteria (and their growing resistance).
<br />
In the accompanying website, most attention given to the exhibition, to make available images and descriptions to spark interest and to inform those who could not view in person.
<br />
Screenshot from Exhibition index.
</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1187" height="981" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png" class="wp-image-358" alt="History of Science Museum: Website for Special Exhibition, &#039;Back from the Dead&#039; to mark penicillin&#039;s 75th anniversary as a life-saving drug" srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png 1187w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-300x248.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-1024x846.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-768x635.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-500x413.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-800x661.png 800w" sizes="auto, (max-width: 1187px) 100vw, 1187px" /></noscript><img decoding="async" width="1187" height="981" src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png" class="wp-image-358 vp-lazyload" alt="History of Science Museum: Website for Special Exhibition, &#039;Back from the Dead&#039; to mark penicillin&#039;s 75th anniversary as a life-saving drug" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTE4NyIgaGVpZ2h0PSI5ODEiIHZpZXdCb3g9IjAgMCAxMTg3IDk4MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png 1187w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-300x248.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-1024x846.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-768x635.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-500x413.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-800x661.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	Back from the Dead: Exhibition home page</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-7f1d82d5" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a.png 1205w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-300x244.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-1024x832.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-768x624.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-500x406.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-800x650.png 800w" data-vp-popup-img-size="1205x979" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-800x650.png" data-vp-popup-md-img-size="800x650" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-500x406.png" data-vp-popup-sm-img-size="500x406">
			<h3 class="vp-portfolio__item-popup-title">Back from the Dead: Myth Busting question</h3>
				<div class="vp-portfolio__item-popup-description">Among the educational uses of the site, was to inform through Q&amp;A, here using petri dishes as visuals. 
<br />
Screenshot from History of Science Museum: Website for Special Exhibition, &#8216;Back from the dead&#8217;.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1205" height="979" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a.png" class="wp-image-362" alt="HSM: Website for Special Exhibition, &#039;Back from the dead&#039; myth busting page, including detail of a petri dish asking the question, &#039;What are bacteria?&#039;" srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a.png 1205w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-300x244.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-1024x832.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-768x624.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-500x406.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-800x650.png 800w" sizes="auto, (max-width: 1205px) 100vw, 1205px" /></noscript><img decoding="async" width="1205" height="979" src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a.png" class="wp-image-362 vp-lazyload" alt="HSM: Website for Special Exhibition, &#039;Back from the dead&#039; myth busting page, including detail of a petri dish asking the question, &#039;What are bacteria?&#039;" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwNSIgaGVpZ2h0PSI5NzkiIHZpZXdCb3g9IjAgMCAxMjA1IDk3OSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a.png 1205w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-300x244.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-1024x832.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-768x624.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-500x406.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a-800x650.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1a.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	Back from the Dead: Myth Busting question</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-84cb880e" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c.png 862w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-300x220.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-768x564.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-500x367.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-800x587.png 800w" data-vp-popup-img-size="862x633" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-800x587.png" data-vp-popup-md-img-size="800x587" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-500x367.png" data-vp-popup-sm-img-size="500x367">
			<h3 class="vp-portfolio__item-popup-title">Back from the Dead: Myth Busting reveal</h3>
				<div class="vp-portfolio__item-popup-description">A mouseover animated effect for one of the petri dishes, revealing the answer to a fundamental question.
<br />
Screenshot from History of Science Museum: Website for Special Exhibition, &#8216;Back from the dead&#8217;.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="862" height="633" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c.png" class="wp-image-364" alt="HSM: Website for Special Exhibition, &#039;Back from the dead&#039; - detail of a petri dish with information about bacteria" srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c.png 862w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-300x220.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-768x564.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-500x367.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-800x587.png 800w" sizes="auto, (max-width: 862px) 100vw, 862px" /></noscript><img decoding="async" width="862" height="633" src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c.png" class="wp-image-364 vp-lazyload" alt="HSM: Website for Special Exhibition, &#039;Back from the dead&#039; - detail of a petri dish with information about bacteria" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODYyIiBoZWlnaHQ9IjYzMyIgdmlld0JveD0iMCAwIDg2MiA2MzMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PC9zdmc+" data-src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c.png 862w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-300x220.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-768x564.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-500x367.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c-800x587.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_graphic1c.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	Back from the Dead: Myth Busting reveal</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-4b70dffd" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text.png 1000w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-300x208.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-768x533.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-500x347.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-800x555.png 800w" data-vp-popup-img-size="1000x694" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-800x555.png" data-vp-popup-md-img-size="800x555" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-500x347.png" data-vp-popup-sm-img-size="500x347">
			<h3 class="vp-portfolio__item-popup-title">Back from the Dead: Myth Busting (text version)</h3>
				<div class="vp-portfolio__item-popup-description">Text versions are provided for key visuals, mindful of accessibility needs for the visually impaired.
<br />
An element of interactivity is retained with collapsible text panels. 
<br />
Screenshot from History of Science Museum: Website for Special Exhibition, &#8216;Back from the dead&#8217;.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1000" height="694" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text.png" class="wp-image-365" alt="HSM: Website for Special Exhibition, &#039;Back from the dead&#039; about the fight against bacteria (and their growing resistance)" srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text.png 1000w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-300x208.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-768x533.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-500x347.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-800x555.png 800w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /></noscript><img decoding="async" width="1000" height="694" src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text.png" class="wp-image-365 vp-lazyload" alt="HSM: Website for Special Exhibition, &#039;Back from the dead&#039; about the fight against bacteria (and their growing resistance)" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwMCIgaGVpZ2h0PSI2OTQiIHZpZXdCb3g9IjAgMCAxMDAwIDY5NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text.png 1000w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-300x208.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-768x533.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-500x347.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text-800x555.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/BFTD_MythBusting_text.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	Back from the Dead: Myth Busting (text version)</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-f43cf8ac" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards.png 816w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-300x260.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-768x666.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-500x434.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-800x694.png 800w" data-vp-popup-img-size="816x708" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-800x694.png" data-vp-popup-md-img-size="800x694" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-500x434.png" data-vp-popup-sm-img-size="500x434">
			<h3 class="vp-portfolio__item-popup-title">Back from the Dead: Feedback cards</h3>
				<div class="vp-portfolio__item-popup-description">A lightbox gallery (WordPress plugin) was created for the handwritten feedback cards filled in by visitors to the exhibition.  
<br />
A link to text transcriptions included for accessibility. 
<br />
Screenshot from History of Science Museum: Website for Special Exhibition, &#8216;Back from the dead&#8217;. </div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="816" height="708" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards.png" class="wp-image-359" alt="HSM: Website for Special Exhibition, &#039;Back from the dead&#039; feedback cards including five guiding questions with card responses underneath" srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards.png 816w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-300x260.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-768x666.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-500x434.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-800x694.png 800w" sizes="auto, (max-width: 816px) 100vw, 816px" /></noscript><img decoding="async" width="816" height="708" src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards.png" class="wp-image-359 vp-lazyload" alt="HSM: Website for Special Exhibition, &#039;Back from the dead&#039; feedback cards including five guiding questions with card responses underneath" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODE2IiBoZWlnaHQ9IjcwOCIgdmlld0JveD0iMCAwIDgxNiA3MDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PC9zdmc+" data-src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards.png 816w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-300x260.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-768x666.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-500x434.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards-800x694.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_cards.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	Back from the Dead: Feedback cards</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-69764438" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text.png 1183w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-300x249.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-1024x848.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-768x636.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-500x414.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-800x663.png 800w" data-vp-popup-img-size="1183x980" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-800x663.png" data-vp-popup-md-img-size="800x663" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-500x414.png" data-vp-popup-sm-img-size="500x414">
			<h3 class="vp-portfolio__item-popup-title">Back from the Dead: Feedback cards (text)</h3>
				<div class="vp-portfolio__item-popup-description">Text versions are provided for key visuals, mindful of accessibility needs for the visually impaired. 
<br />
In this case, transcriptions of handwritten feedback cards.
<br />
Screenshot from History of Science Museum: Website for Special Exhibition, &#8216;Back from the dead&#8217;.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1183" height="980" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text.png" class="wp-image-361" alt="HSM: Website for Special Exhibition, &#039;Back from the dead&#039; - transcriptions of feedback cards" srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text.png 1183w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-300x249.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-1024x848.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-768x636.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-500x414.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-800x663.png 800w" sizes="auto, (max-width: 1183px) 100vw, 1183px" /></noscript><img decoding="async" width="1183" height="980" src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text.png" class="wp-image-361 vp-lazyload" alt="HSM: Website for Special Exhibition, &#039;Back from the dead&#039; - transcriptions of feedback cards" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTE4MyIgaGVpZ2h0PSI5ODAiIHZpZXdCb3g9IjAgMCAxMTgzIDk4MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text.png 1183w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-300x249.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-1024x848.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-768x636.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-500x414.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text-800x663.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Feedback_text.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	Back from the Dead: Feedback cards (text)</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
</div>
		</div>
		
</div>
</div>


<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>International Association for Religious Freedom</title>
		<link>https://ptworld.net/portfolio/iarf/</link>
		
		<dc:creator><![CDATA[Paul]]></dc:creator>
		<pubDate>Mon, 16 May 2022 10:00:18 +0000</pubDate>
				<category><![CDATA[development]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[IARF]]></category>
		<category><![CDATA[interfaith]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[religion]]></category>
		<category><![CDATA[religious freedom]]></category>
		<category><![CDATA[requirements]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://ptworld.net/?page_id=430</guid>

					<description><![CDATA[June 2011 &#8211; April 2012 Following a successful tender process, I was contracted to overhaul the website of the International Association for Religious Freedom (IARF), a UN NGO having general consultative status to ECOSOC with HQ in the UK. The <a class="more-link" href="https://ptworld.net/portfolio/iarf/">Read More ...</a>]]></description>
										<content:encoded><![CDATA[
<p><strong>June 2011 &#8211; April 2012</strong> </p>



<div style="height:24px" aria-hidden="true" class="wp-block-spacer"></div>



<p>Following a successful tender process, I was contracted to overhaul the website of the International Association for Religious Freedom (IARF), a <a href="https://digitallibrary.un.org/record/266458" target="_blank" rel="noreferrer noopener">UN NGO having general consultative status to ECOSOC</a> with HQ in the UK.   </p>



<p><strong>The brief</strong>: To amalgamate relevant content from three existing sites, each developed separately during different periods and in a generally unwieldy state, into a single site that was current, covered the organisation&#8217;s activities well, and which would be easy to maintain.  The new site would provide comprehensive coverage of the activities, styled with a look and feel similar to that of the United Nations.</p>



<p><strong>Roles</strong>: After initial general consultancy to assess the current status, I undertook all the technical aspects of the project, from systems architecture and development, through to user training. </p>



<p><strong>Solution</strong>: Working closely with the Secretariat Administrator, I implemented a new site to replace all legacy sites.  I used WordPress (Multisite with subdomains), creating a custom theme derived from an existing one from the IARF US Chapter site.  I also delivered experimental support for mobile devices using a theme switcher (before responsive designs became the norm).<br><br>I also oversaw the migration to a new VPS hosting platform with considerable cost savings.  Detailed documentation was provided for administration, development and content authoring.</p>



<p><strong>URL</strong>: <a rel="noreferrer noopener" href="https://iarf.net/" target="_blank">https://iarf.net/</a>  (via archive.org)</p>


<div class="wp-block-visual-portfolio">
<div class="vp-portfolio vp-uid-c514cead vp-id-Z1sin1F"
	data-vp-layout="tiles" data-vp-content-source="images" data-vp-items-style="fade" data-vp-items-click-action="popup_gallery" data-vp-items-gap="15" data-vp-items-gap-vertical="" data-vp-pagination="load-more" data-vp-next-page-url="" data-vp-tiles-type="3|1,1|" >
	<div class="vp-portfolio__preloader-wrap">
		<div class="vp-portfolio__preloader">
			<img decoding="async" loading="eager" src="https://ptworld.net/wp-content/plugins/visual-portfolio/assets/images/logo-dark.svg" alt="Visual Portfolio, Posts &amp; Image Gallery for WordPress" width="20" height="20" data-skip-lazy>
		</div>
	</div>
		<div class="vp-portfolio__items-wrap">
			
<div class="vp-portfolio__items vp-portfolio__items-style-fade vp-portfolio__items-show-overlay-hover">

		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-c02b9984" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png 1016w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-300x287.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-768x734.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-500x478.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-800x765.png 800w" data-vp-popup-img-size="1016x971" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-800x765.png" data-vp-popup-md-img-size="800x765" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-500x478.png" data-vp-popup-sm-img-size="500x478">
			<h3 class="vp-portfolio__item-popup-title">IARF homepage (2015)</h3>
				<div class="vp-portfolio__item-popup-description">There was much deliberation on the home page &#8211; with its navigation bar &#8211; on what to convey in terms of message and information available.
<br /> 
This was to be widely communicated &#8211; hence the social media links and option to translate the page using Google. 
<br />
The main photo was chosen to convey aspirations and reality.
<br />
The screenshot was taken about three years after the site&#8217;s launch (with content being maintained).  </div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1016" height="971" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png" class="wp-image-381" alt="IARF website home page (screenshot) features its banner and slogan &#039;belief with integrity&#039;, with links to recent news and forthcoming events. The main photograph is taken in a Buddhist temple and depicts monastics from different traditions, led by His Holiness, the Dalai Lama" srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png 1016w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-300x287.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-768x734.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-500x478.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-800x765.png 800w" sizes="auto, (max-width: 1016px) 100vw, 1016px" /></noscript><img decoding="async" width="1016" height="971" src="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png" class="wp-image-381 vp-lazyload" alt="IARF website home page (screenshot) features its banner and slogan &#039;belief with integrity&#039;, with links to recent news and forthcoming events. The main photograph is taken in a Buddhist temple and depicts monastics from different traditions, led by His Holiness, the Dalai Lama" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAxNiIgaGVpZ2h0PSI5NzEiIHZpZXdCb3g9IjAgMCAxMDE2IDk3MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png 1016w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-300x287.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-768x734.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-500x478.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-800x765.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	IARF homepage (2015)</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-96999fcd" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2.png 1016w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-300x245.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-768x627.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-500x408.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-800x653.png 800w" data-vp-popup-img-size="1016x829" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-800x653.png" data-vp-popup-md-img-size="800x653" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-500x408.png" data-vp-popup-sm-img-size="500x408">
			<h3 class="vp-portfolio__item-popup-title">About the International Association for Religious Freedom</h3>
				<div class="vp-portfolio__item-popup-description">A brief summary tells the reader about IARF in a nutshell, with menu links to supporting documents explaining its rationale and policies. 
<br />
Screenshot from the IARF website.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1016" height="829" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2.png" class="wp-image-383" alt="IARF website (screenshot): About the IARF" srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2.png 1016w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-300x245.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-768x627.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-500x408.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-800x653.png 800w" sizes="auto, (max-width: 1016px) 100vw, 1016px" /></noscript><img decoding="async" width="1016" height="829" src="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2.png" class="wp-image-383 vp-lazyload" alt="IARF website (screenshot): About the IARF" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAxNiIgaGVpZ2h0PSI4MjkiIHZpZXdCb3g9IjAgMCAxMDE2IDgyOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2.png 1016w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-300x245.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-768x627.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-500x408.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2-800x653.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-about2.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	About the International Association for Religious Freedom</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-73ded863" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN.png 1030w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-300x236.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-1024x805.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-768x604.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-500x393.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-800x629.png 800w" data-vp-popup-img-size="1030x810" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-800x629.png" data-vp-popup-md-img-size="800x629" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-500x393.png" data-vp-popup-sm-img-size="500x393">
			<h3 class="vp-portfolio__item-popup-title">IARF at the UN</h3>
				<div class="vp-portfolio__item-popup-description">&#8220;Everyone has the right to freedom of thought, consciences and religion.&#8221; 
<br />
The visual presentation of this and other quotes were all prepared within WordPress.
<br />
Screenshot from the IARF website.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1030" height="810" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN.png" class="wp-image-376" alt="IARF at the United Nations (screenshot): explaining the nature of IARF&#039;s relationship with the UN. The page features the UN&#039;s Universal Declaration of Human Rights and includes a photo of the Palais des Nations in Geneva (and the Wilson Memorial Globe)" srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN.png 1030w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-300x236.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-1024x805.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-768x604.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-500x393.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-800x629.png 800w" sizes="auto, (max-width: 1030px) 100vw, 1030px" /></noscript><img decoding="async" width="1030" height="810" src="https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN.png" class="wp-image-376 vp-lazyload" alt="IARF at the United Nations (screenshot): explaining the nature of IARF&#039;s relationship with the UN. The page features the UN&#039;s Universal Declaration of Human Rights and includes a photo of the Palais des Nations in Geneva (and the Wilson Memorial Globe)" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAzMCIgaGVpZ2h0PSI4MTAiIHZpZXdCb3g9IjAgMCAxMDMwIDgxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN.png 1030w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-300x236.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-1024x805.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-768x604.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-500x393.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN-800x629.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_at_the_UN.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	IARF at the UN</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-a2f4c2e5" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership.png 1017w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-300x252.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-768x646.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-500x420.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-800x673.png 800w" data-vp-popup-img-size="1017x855" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-800x673.png" data-vp-popup-md-img-size="800x673" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-500x420.png" data-vp-popup-sm-img-size="500x420">
			<h3 class="vp-portfolio__item-popup-title">IARF Member Groups</h3>
				<div class="vp-portfolio__item-popup-description">The international nature of IARF is exemplified by its member groups across the world. 
<br />
The tabular layout and links to member groups by region indicate the extent of its formal activities.
<br />
Screenshot from the IARF website.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1017" height="855" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership.png" class="wp-image-384" alt="IARF Membership web page (screenshot): a table shows members by region (South Asia, Europe and Middle East, North America, East Asia, Rest of the World" srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership.png 1017w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-300x252.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-768x646.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-500x420.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-800x673.png 800w" sizes="auto, (max-width: 1017px) 100vw, 1017px" /></noscript><img decoding="async" width="1017" height="855" src="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership.png" class="wp-image-384 vp-lazyload" alt="IARF Membership web page (screenshot): a table shows members by region (South Asia, Europe and Middle East, North America, East Asia, Rest of the World" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAxNyIgaGVpZ2h0PSI4NTUiIHZpZXdCb3g9IjAgMCAxMDE3IDg1NSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership.png 1017w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-300x252.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-768x646.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-500x420.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership-800x673.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-membership.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	IARF Member Groups</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-a62aabe6" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India.png 1020w, https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-300x244.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-768x623.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-500x406.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-800x649.png 800w" data-vp-popup-img-size="1020x828" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-800x649.png" data-vp-popup-md-img-size="800x649" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-500x406.png" data-vp-popup-sm-img-size="500x406">
			<h3 class="vp-portfolio__item-popup-title">IARF projects in India</h3>
				<div class="vp-portfolio__item-popup-description">More recent additions to the site were starting to include more multimedia, particularly videos featuring personal testimony.  
<br />
Human rights was the main focus for projects in India.  Screenshot from the IARF website.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1020" height="828" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India.png" class="wp-image-387" alt="IARF website (screenshot): projects in India, with a description of human rights work and a video on this theme" srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India.png 1020w, https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-300x244.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-768x623.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-500x406.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-800x649.png 800w" sizes="auto, (max-width: 1020px) 100vw, 1020px" /></noscript><img decoding="async" width="1020" height="828" src="https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India.png" class="wp-image-387 vp-lazyload" alt="IARF website (screenshot): projects in India, with a description of human rights work and a video on this theme" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAyMCIgaGVpZ2h0PSI4MjgiIHZpZXdCb3g9IjAgMCAxMDIwIDgyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India.png 1020w, https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-300x244.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-768x623.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-500x406.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India-800x649.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_projects_India.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	IARF projects in India</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-7eb6fd4b" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page.png 1016w, https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-300x231.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-768x593.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-500x386.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-800x617.png 800w" data-vp-popup-img-size="1016x784" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-800x617.png" data-vp-popup-md-img-size="800x617" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-500x386.png" data-vp-popup-sm-img-size="500x386">
			<h3 class="vp-portfolio__item-popup-title">IARF Contact Page</h3>
				<div class="vp-portfolio__item-popup-description">At the time, the use of encrypted connections was less common.
<br />
So, users had to be prompted if they wish to avoid eavesdropping on sensitive messages (implemented by a custom plugin.).  
<br />
Screenshot from the IARF website.  </div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1016" height="784" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page.png" class="wp-image-379" alt="IARF website (screenshot): Contact Page - a simple web form with name, email, subject and message plus the option to attach a file" srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page.png 1016w, https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-300x231.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-768x593.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-500x386.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-800x617.png 800w" sizes="auto, (max-width: 1016px) 100vw, 1016px" /></noscript><img decoding="async" width="1016" height="784" src="https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page.png" class="wp-image-379 vp-lazyload" alt="IARF website (screenshot): Contact Page - a simple web form with name, email, subject and message plus the option to attach a file" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAxNiIgaGVpZ2h0PSI3ODQiIHZpZXdCb3g9IjAgMCAxMDE2IDc4NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page.png 1016w, https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-300x231.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-768x593.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-500x386.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page-800x617.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_contact_page.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	IARF Contact Page</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-8b5cc78f" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN.png 1017w, https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-300x211.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-768x541.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-500x352.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-800x563.png 800w" data-vp-popup-img-size="1017x716" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-800x563.png" data-vp-popup-md-img-size="800x563" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-500x352.png" data-vp-popup-sm-img-size="500x352">
			<h3 class="vp-portfolio__item-popup-title">IARF Religious Freedom Young Adult Network</h3>
				<div class="vp-portfolio__item-popup-description">Introductory information on the IARF Religious Freedom Young Adult Network, focused on applying UN principles to hands-on project work;
<br />
each project had its own page on the site (linked on the left). 
<br />
Screenshot from the IARF website.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1017" height="716" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN.png" class="wp-image-390" alt="IARF website (screenshot): introductory information on the Religious Freedom Young Adult Network, with a photo of hands placed in a circle; the text describes context and objectives" srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN.png 1017w, https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-300x211.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-768x541.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-500x352.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-800x563.png 800w" sizes="auto, (max-width: 1017px) 100vw, 1017px" /></noscript><img decoding="async" width="1017" height="716" src="https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN.png" class="wp-image-390 vp-lazyload" alt="IARF website (screenshot): introductory information on the Religious Freedom Young Adult Network, with a photo of hands placed in a circle; the text describes context and objectives" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAxNyIgaGVpZ2h0PSI3MTYiIHZpZXdCb3g9IjAgMCAxMDE3IDcxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN.png 1017w, https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-300x211.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-768x541.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-500x352.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN-800x563.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_RFYN.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	IARF Religious Freedom Young Adult Network</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-2afb91ab" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689.png 999w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-300x217.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-768x554.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-500x361.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-800x577.png 800w" data-vp-popup-img-size="999x721" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-800x577.png" data-vp-popup-md-img-size="800x577" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-500x361.png" data-vp-popup-sm-img-size="500x361">
			<h3 class="vp-portfolio__item-popup-title">IARF Events</h3>
				<div class="vp-portfolio__item-popup-description">Documentation for an organisation like IARF is vitally important. 
<br />
Being available on the Web, it is indexed by search engines, helping to become discoverable.
<br />
Screenshot from the IARF website.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="999" height="721" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689.png" class="wp-image-380" alt="IARF website (screenshot): Events" srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689.png 999w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-300x217.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-768x554.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-500x361.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-800x577.png 800w" sizes="auto, (max-width: 999px) 100vw, 999px" /></noscript><img decoding="async" width="999" height="721" src="https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689.png" class="wp-image-380 vp-lazyload" alt="IARF website (screenshot): Events" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTk5IiBoZWlnaHQ9IjcyMSIgdmlld0JveD0iMCAwIDk5OSA3MjEiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PC9zdmc+" data-src="https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689.png 999w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-300x217.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-768x554.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-500x361.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689-800x577.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_Events-e1652693311689.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	IARF Events</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-fbdb1500" data-vp-filter="" 		>
			<template class="vp-portfolio__item-popup" data-vp-popup-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014.png" data-vp-popup-img-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014.png 1014w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-300x229.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-768x585.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-500x381.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-800x610.png 800w" data-vp-popup-img-size="1014x773" data-vp-popup-md-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-800x610.png" data-vp-popup-md-img-size="800x610" data-vp-popup-sm-img="https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-500x381.png" data-vp-popup-sm-img-size="500x381">
			<h3 class="vp-portfolio__item-popup-title">IARF Congress 2014</h3>
				<div class="vp-portfolio__item-popup-description">The IARF Congress is important enough to merit its own navigation menu item with sidebar links to supporting documents.
<br />
Screenshot from the IARF website.</div>
		</template>
						<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014.png"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1014" height="773" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014.png" class="wp-image-378" alt="IARF website (screenshot): World Congress page - details of every Congress from 1901 to the 34th in Birmingham (2014)" srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014.png 1014w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-300x229.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-768x585.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-500x381.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-800x610.png 800w" sizes="auto, (max-width: 1014px) 100vw, 1014px" /></noscript><img decoding="async" width="1014" height="773" src="https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014.png" class="wp-image-378 vp-lazyload" alt="IARF website (screenshot): World Congress page - details of every Congress from 1901 to the 34th in Birmingham (2014)" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAxNCIgaGVpZ2h0PSI3NzMiIHZpZXdCb3g9IjAgMCAxMDE0IDc3MyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014.png 1014w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-300x229.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-768x585.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-500x381.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014-800x610.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/wp-content/uploads/2022/05/IARF_Congress_2014.png"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	IARF Congress 2014</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
</div>
		</div>
		
</div>
</div>


<p class="has-small-font-size"></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Portfolio</title>
		<link>https://ptworld.net/portfolio/</link>
		
		<dc:creator><![CDATA[Paul]]></dc:creator>
		<pubDate>Thu, 12 May 2022 12:37:01 +0000</pubDate>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[collections]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[digital assets]]></category>
		<category><![CDATA[GLAM]]></category>
		<category><![CDATA[languages]]></category>
		<category><![CDATA[lifecycle]]></category>
		<category><![CDATA[museums]]></category>
		<category><![CDATA[OUCS]]></category>
		<category><![CDATA[Oxford]]></category>
		<category><![CDATA[publishing]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://ptworld.net/?page_id=354</guid>

					<description><![CDATA[This portfolio of work covers a number of projects across Web development and other forms of publication. It is not exhaustive. Please click on a thumbnail to access project details and slideshows. .]]></description>
										<content:encoded><![CDATA[
<p>This portfolio of work covers a number of projects across Web development and other forms of publication.  It is not exhaustive.</p>



<p>Please click on a thumbnail to access project details and slideshows.</p>


<div class="wp-block-visual-portfolio">
<div class="vp-portfolio vp-uid-05a2de0d vp-id-2n3WpI"
	data-vp-layout="tiles" data-vp-content-source="images" data-vp-items-style="fade" data-vp-items-click-action="url" data-vp-items-gap="15" data-vp-items-gap-vertical="" data-vp-pagination="load-more" data-vp-next-page-url="" data-vp-tiles-type="3|1,1|" >
	<div class="vp-portfolio__preloader-wrap">
		<div class="vp-portfolio__preloader">
			<img decoding="async" loading="eager" src="https://ptworld.net/wp-content/plugins/visual-portfolio/assets/images/logo-dark.svg" alt="Visual Portfolio, Posts &amp; Image Gallery for WordPress" width="20" height="20" data-skip-lazy>
		</div>
	</div>
		<div class="vp-portfolio__items-wrap">
			
<div class="vp-portfolio__items vp-portfolio__items-style-fade vp-portfolio__items-show-overlay-hover">

		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-de5d6cdc" data-vp-filter="" 		>
									<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/portfolio/theology-faculty-tlr/"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1378" height="1154" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index.png" class="wp-image-395" alt="Theology Faculty Teaching &amp; Learning Resources website (screenshot):" srcset="https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index.png 1378w, https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index-300x251.png 300w, https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index-1024x858.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index-768x643.png 768w, https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index-500x419.png 500w, https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index-800x670.png 800w, https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index-1280x1072.png 1280w" sizes="auto, (max-width: 1378px) 100vw, 1378px" /></noscript><img decoding="async" width="1378" height="1154" src="https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index.png" class="wp-image-395 vp-lazyload" alt="Theology Faculty Teaching &amp; Learning Resources website (screenshot):" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTM3OCIgaGVpZ2h0PSIxMTU0IiB2aWV3Qm94PSIwIDAgMTM3OCAxMTU0IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" data-src="https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index.png 1378w, https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index-300x251.png 300w, https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index-1024x858.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index-768x643.png 768w, https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index-500x419.png 500w, https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index-800x670.png 800w, https://ptworld.net/wp-content/uploads/2022/05/Theology_TeachLearnResources_index-1280x1072.png 1280w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/portfolio/theology-faculty-tlr/"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	Theology Faculty Teaching and Learning Resources Web</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-6723618e" data-vp-filter="" 		>
									<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/portfolio/multimedia-languages/#cdlang"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1905" height="1656" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/CTCFL_CD_cover-Elementary.jpeg" class="wp-image-295" alt="CTCFL CD cover for Elementary-Intermediate Chinese course with video screenshots showing various scenes such as ordering a meal and getting a bike repaired" srcset="https://ptworld.net/wp-content/uploads/2022/05/CTCFL_CD_cover-Elementary.jpeg 1905w, https://ptworld.net/wp-content/uploads/2022/05/CTCFL_CD_cover-Elementary-300x261.jpeg 300w, https://ptworld.net/wp-content/uploads/2022/05/CTCFL_CD_cover-Elementary-1024x890.jpeg 1024w, https://ptworld.net/wp-content/uploads/2022/05/CTCFL_CD_cover-Elementary-768x668.jpeg 768w, https://ptworld.net/wp-content/uploads/2022/05/CTCFL_CD_cover-Elementary-1536x1335.jpeg 1536w" sizes="auto, (max-width: 1905px) 100vw, 1905px" /></noscript><img decoding="async" width="1905" height="1656" src="https://ptworld.net/wp-content/uploads/2022/05/CTCFL_CD_cover-Elementary.jpeg" class="wp-image-295 vp-lazyload" alt="CTCFL CD cover for Elementary-Intermediate Chinese course with video screenshots showing various scenes such as ordering a meal and getting a bike repaired" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkwNSIgaGVpZ2h0PSIxNjU2IiB2aWV3Qm94PSIwIDAgMTkwNSAxNjU2IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" data-src="https://ptworld.net/wp-content/uploads/2022/05/CTCFL_CD_cover-Elementary.jpeg" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/CTCFL_CD_cover-Elementary.jpeg 1905w, https://ptworld.net/wp-content/uploads/2022/05/CTCFL_CD_cover-Elementary-300x261.jpeg 300w, https://ptworld.net/wp-content/uploads/2022/05/CTCFL_CD_cover-Elementary-1024x890.jpeg 1024w, https://ptworld.net/wp-content/uploads/2022/05/CTCFL_CD_cover-Elementary-768x668.jpeg 768w, https://ptworld.net/wp-content/uploads/2022/05/CTCFL_CD_cover-Elementary-1536x1335.jpeg 1536w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/portfolio/multimedia-languages/#cdlang"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	CTCFL Elementary-Intermediate Chinese CD-ROM</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-6b8457fd" data-vp-filter="" 		>
									<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/portfolio/multimedia-languages/#iacm"
			>
	
		<noscript><img loading="lazy" decoding="async" width="612" height="561" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/IACM_options.gif" class="wp-image-685" alt="&#039;IACM Editing shell&#039; with an overview of the workflow (traffic lights - red, amber and green for creation, content ready, and reviewed)." /></noscript><img decoding="async" width="612" height="561" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjEyIiBoZWlnaHQ9IjU2MSIgdmlld0JveD0iMCAwIDYxMiA1NjEiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PC9zdmc+" class="wp-image-685 vp-lazyload" alt="&#039;IACM Editing shell&#039; with an overview of the workflow (traffic lights - red, amber and green for creation, content ready, and reviewed)." data-src="https://ptworld.net/wp-content/uploads/2022/05/IACM_options.gif" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/portfolio/multimedia-languages/#iacm"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	Interactive Audio Comprehension Materials (Phase II)</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-a1f3c263" data-vp-filter="" 		>
									<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/portfolio/ramble/"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1608" height="1117" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq.jpg" class="wp-image-567" alt="Photograph shows the iPaq PDA on a stand and Belkin stowaway keyboard unfolded on a desk at home" srcset="https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq.jpg 1608w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-300x208.jpg 300w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-1024x711.jpg 1024w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-768x533.jpg 768w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-1536x1067.jpg 1536w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-500x347.jpg 500w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-800x556.jpg 800w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-1280x889.jpg 1280w" sizes="auto, (max-width: 1608px) 100vw, 1608px" /></noscript><img decoding="async" width="1608" height="1117" src="https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq.jpg" class="wp-image-567 vp-lazyload" alt="Photograph shows the iPaq PDA on a stand and Belkin stowaway keyboard unfolded on a desk at home" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYwOCIgaGVpZ2h0PSIxMTE3IiB2aWV3Qm94PSIwIDAgMTYwOCAxMTE3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" data-src="https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq.jpg" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq.jpg 1608w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-300x208.jpg 300w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-1024x711.jpg 1024w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-768x533.jpg 768w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-1536x1067.jpg 1536w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-500x347.jpg 500w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-800x556.jpg 800w, https://ptworld.net/wp-content/uploads/2022/05/RAMBLE_Belkin_iPaq-1280x889.jpg 1280w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/portfolio/ramble/"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	JISC RAMBLE Project</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-2a6d24fc" data-vp-filter="" 		>
									<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/research/e-learning/#vle"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1000" height="882" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/06/Educause2006_OxfordVLE_stand.jpg" class="wp-image-894" alt="Educause 2006 poster. The board contains a variety of posters, promoting training courses and illustrating various uses of the WebLearn VLE, particularly personalisation with various symbology such as a roundabout with turn-offs for different uses. A laptop sits on the table, with a screen showing a demo CD." srcset="https://ptworld.net/wp-content/uploads/2022/06/Educause2006_OxfordVLE_stand.jpg 1000w, https://ptworld.net/wp-content/uploads/2022/06/Educause2006_OxfordVLE_stand-300x265.jpg 300w, https://ptworld.net/wp-content/uploads/2022/06/Educause2006_OxfordVLE_stand-768x677.jpg 768w, https://ptworld.net/wp-content/uploads/2022/06/Educause2006_OxfordVLE_stand-500x441.jpg 500w, https://ptworld.net/wp-content/uploads/2022/06/Educause2006_OxfordVLE_stand-800x706.jpg 800w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /></noscript><img decoding="async" width="1000" height="882" src="https://ptworld.net/wp-content/uploads/2022/06/Educause2006_OxfordVLE_stand.jpg" class="wp-image-894 vp-lazyload" alt="Educause 2006 poster. The board contains a variety of posters, promoting training courses and illustrating various uses of the WebLearn VLE, particularly personalisation with various symbology such as a roundabout with turn-offs for different uses. A laptop sits on the table, with a screen showing a demo CD." srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwMCIgaGVpZ2h0PSI4ODIiIHZpZXdCb3g9IjAgMCAxMDAwIDg4MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/06/Educause2006_OxfordVLE_stand.jpg" data-srcset="https://ptworld.net/wp-content/uploads/2022/06/Educause2006_OxfordVLE_stand.jpg 1000w, https://ptworld.net/wp-content/uploads/2022/06/Educause2006_OxfordVLE_stand-300x265.jpg 300w, https://ptworld.net/wp-content/uploads/2022/06/Educause2006_OxfordVLE_stand-768x677.jpg 768w, https://ptworld.net/wp-content/uploads/2022/06/Educause2006_OxfordVLE_stand-500x441.jpg 500w, https://ptworld.net/wp-content/uploads/2022/06/Educause2006_OxfordVLE_stand-800x706.jpg 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/research/e-learning/#vle"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	Educause 2006: From Personalized Learning to Open Courseware: Learning Management Systems Can Be Flexible</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-752263fc" data-vp-filter="" 		>
									<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/portfolio/mhs-hsm-website/"
			>
	
		<noscript><img loading="lazy" decoding="async" width="965" height="1003" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png" class="wp-image-471" alt="The home page for the Museum of the History of Science, 2012. Its header displays the Museum&#039;s logo and essential details. Underneath is a banner image, the main navigation menu with various sections underneath on current exhibitions, news, featured objects, events and a search box" srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png 965w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-289x300.png 289w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-768x798.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-500x520.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-800x832.png 800w" sizes="auto, (max-width: 965px) 100vw, 965px" /></noscript><img decoding="async" width="965" height="1003" src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png" class="wp-image-471 vp-lazyload" alt="The home page for the Museum of the History of Science, 2012. Its header displays the Museum&#039;s logo and essential details. Underneath is a banner image, the main navigation menu with various sections underneath on current exhibitions, news, featured objects, events and a search box" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTY1IiBoZWlnaHQ9IjEwMDMiIHZpZXdCb3g9IjAgMCA5NjUgMTAwMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe.png 965w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-289x300.png 289w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-768x798.png 768w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-500x520.png 500w, https://ptworld.net/wp-content/uploads/2022/05/MHS_Home_page_2012-Mechanical_universe-800x832.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/portfolio/mhs-hsm-website/"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	MHS Website (WordPress developments)</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-e540c658" data-vp-filter="" 		>
									<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/portfolio/iarf/"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1016" height="971" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png" class="wp-image-381" alt="IARF website home page (screenshot) features its banner and slogan &#039;belief with integrity&#039;, with links to recent news and forthcoming events. The main photograph is taken in a Buddhist temple and depicts monastics from different traditions, led by His Holiness, the Dalai Lama" srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png 1016w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-300x287.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-768x734.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-500x478.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-800x765.png 800w" sizes="auto, (max-width: 1016px) 100vw, 1016px" /></noscript><img decoding="async" width="1016" height="971" src="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png" class="wp-image-381 vp-lazyload" alt="IARF website home page (screenshot) features its banner and slogan &#039;belief with integrity&#039;, with links to recent news and forthcoming events. The main photograph is taken in a Buddhist temple and depicts monastics from different traditions, led by His Holiness, the Dalai Lama" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAxNiIgaGVpZ2h0PSI5NzEiIHZpZXdCb3g9IjAgMCAxMDE2IDk3MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015.png 1016w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-300x287.png 300w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-768x734.png 768w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-500x478.png 500w, https://ptworld.net/wp-content/uploads/2022/05/IARF_homepage_2015-800x765.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/portfolio/iarf/"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	IARF Website redevelopment</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-8af5d89f" data-vp-filter="" 		>
									<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/portfolio/oumnh-collections/#Icones"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1053" height="941" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home.png" class="wp-image-611" alt="Jones&#039; Icones Online: home page with introductory text on the significance of the 18th century collection of paintings and descriptions of butterfly species" srcset="https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home.png 1053w, https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home-300x268.png 300w, https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home-1024x915.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home-768x686.png 768w, https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home-500x447.png 500w, https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home-800x715.png 800w" sizes="auto, (max-width: 1053px) 100vw, 1053px" /></noscript><img decoding="async" width="1053" height="941" src="https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home.png" class="wp-image-611 vp-lazyload" alt="Jones&#039; Icones Online: home page with introductory text on the significance of the 18th century collection of paintings and descriptions of butterfly species" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA1MyIgaGVpZ2h0PSI5NDEiIHZpZXdCb3g9IjAgMCAxMDUzIDk0MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home.png 1053w, https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home-300x268.png 300w, https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home-1024x915.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home-768x686.png 768w, https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home-500x447.png 500w, https://ptworld.net/wp-content/uploads/2022/05/2014-OUMNH_JonesIcones_Home-800x715.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/portfolio/oumnh-collections/#Icones"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	Jones’ Icones Online: Home</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-0a47db10" data-vp-filter="" 		>
									<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/portfolio/oumnh-collections/#Gems"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1202" height="837" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home.png" class="wp-image-437" alt="Oxford University Museum of Natural History Collections Online home page, beta: access to Life, Earth and Archives collections, together with a separate &#039;Featured&#039; section" srcset="https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home.png 1202w, https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home-300x209.png 300w, https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home-1024x713.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home-768x535.png 768w, https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home-500x348.png 500w, https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home-800x557.png 800w" sizes="auto, (max-width: 1202px) 100vw, 1202px" /></noscript><img decoding="async" width="1202" height="837" src="https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home.png" class="wp-image-437 vp-lazyload" alt="Oxford University Museum of Natural History Collections Online home page, beta: access to Life, Earth and Archives collections, together with a separate &#039;Featured&#039; section" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwMiIgaGVpZ2h0PSI4MzciIHZpZXdCb3g9IjAgMCAxMjAyIDgzNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home.png 1202w, https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home-300x209.png 300w, https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home-1024x713.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home-768x535.png 768w, https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home-500x348.png 500w, https://ptworld.net/wp-content/uploads/2022/05/Collections_Beta_home-800x557.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/portfolio/oumnh-collections/#Gems"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	OUMNH Collections Online beta</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-0cec7fbc" data-vp-filter="" 		>
									<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/portfolio/publishing-systems/"
			>
	
		<noscript><img loading="lazy" decoding="async" width="453" height="684" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2016/04/ThursdayLotus_Cover-small.jpg" class="wp-image-62" alt="cover for &#039;Thursday&#039;s Lotus: The Life and Work of Fuengsin Trafford&#039;" srcset="https://ptworld.net/wp-content/uploads/2016/04/ThursdayLotus_Cover-small.jpg 453w, https://ptworld.net/wp-content/uploads/2016/04/ThursdayLotus_Cover-small-199x300.jpg 199w" sizes="auto, (max-width: 453px) 100vw, 453px" /></noscript><img decoding="async" width="453" height="684" src="https://ptworld.net/wp-content/uploads/2016/04/ThursdayLotus_Cover-small.jpg" class="wp-image-62 vp-lazyload" alt="cover for &#039;Thursday&#039;s Lotus: The Life and Work of Fuengsin Trafford&#039;" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDUzIiBoZWlnaHQ9IjY4NCIgdmlld0JveD0iMCAwIDQ1MyA2ODQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PC9zdmc+" data-src="https://ptworld.net/wp-content/uploads/2016/04/ThursdayLotus_Cover-small.jpg" data-srcset="https://ptworld.net/wp-content/uploads/2016/04/ThursdayLotus_Cover-small.jpg 453w, https://ptworld.net/wp-content/uploads/2016/04/ThursdayLotus_Cover-small-199x300.jpg 199w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/portfolio/publishing-systems/"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	Thursday’s Lotus (paperback)</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-2dc59707" data-vp-filter="" 		>
									<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/portfolio/publishing-systems/#ebook"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1920" height="1154" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-1920x1154.jpg" class="wp-image-555" alt="A shot of the paperback version of Thursday&#039;s Lotus, alongside the Galaxy Tab and a Kindle." srcset="https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-1920x1154.jpg 1920w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-300x180.jpg 300w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-1024x616.jpg 1024w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-768x462.jpg 768w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-1536x923.jpg 1536w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-2048x1231.jpg 2048w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-500x301.jpg 500w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-800x481.jpg 800w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-1280x769.jpg 1280w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></noscript><img decoding="async" width="1920" height="1154" src="https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-1920x1154.jpg" class="wp-image-555 vp-lazyload" alt="A shot of the paperback version of Thursday&#039;s Lotus, alongside the Galaxy Tab and a Kindle." srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxMTU0IiB2aWV3Qm94PSIwIDAgMTkyMCAxMTU0IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==" data-src="https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-1920x1154.jpg" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-1920x1154.jpg 1920w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-300x180.jpg 300w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-1024x616.jpg 1024w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-768x462.jpg 768w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-1536x923.jpg 1536w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-2048x1231.jpg 2048w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-500x301.jpg 500w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-800x481.jpg 800w, https://ptworld.net/wp-content/uploads/2022/05/Thursdays_Lotus-3devices2-1280x769.jpg 1280w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/portfolio/publishing-systems/#ebook"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	Thursday’s Lotus &#8211; e-book production</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-ef45f06d" data-vp-filter="" 		>
									<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/portfolio/mhs-hsm-website/#backfromthedead"
			>
	
		<noscript><img loading="lazy" decoding="async" width="1187" height="981" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png" class="wp-image-358" alt="History of Science Museum: Website for Special Exhibition, &#039;Back from the Dead&#039; to mark penicillin&#039;s 75th anniversary as a life-saving drug" srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png 1187w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-300x248.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-1024x846.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-768x635.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-500x413.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-800x661.png 800w" sizes="auto, (max-width: 1187px) 100vw, 1187px" /></noscript><img decoding="async" width="1187" height="981" src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png" class="wp-image-358 vp-lazyload" alt="History of Science Museum: Website for Special Exhibition, &#039;Back from the Dead&#039; to mark penicillin&#039;s 75th anniversary as a life-saving drug" srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTE4NyIgaGVpZ2h0PSI5ODEiIHZpZXdCb3g9IjAgMCAxMTg3IDk4MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48L3N2Zz4=" data-src="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition.png 1187w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-300x248.png 300w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-1024x846.png 1024w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-768x635.png 768w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-500x413.png 500w, https://ptworld.net/wp-content/uploads/2022/05/BFTD_Exhibition-800x661.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/portfolio/mhs-hsm-website/#backfromthedead"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	 MHS Special Exhibition: Back from the Dead</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
		<div		class="vp-portfolio__item-wrap vp-portfolio__item-uid-5814e489" data-vp-filter="" 		>
									<figure class="vp-portfolio__item">
				
<div class="vp-portfolio__item-img-wrap">
	<div class="vp-portfolio__item-img">
			<a
		href="https://ptworld.net/portfolio/hsm-dams/"
			>
	
		<noscript><img loading="lazy" decoding="async" width="941" height="566" data-skip-lazy src="https://ptworld.net/wp-content/uploads/2022/05/HSM_DAMS-ResourceSpace2.png" class="wp-image-373" alt="History of Science Museum DAMS: main dashboard with links to add and search for assets, group assets in collections, and so on." srcset="https://ptworld.net/wp-content/uploads/2022/05/HSM_DAMS-ResourceSpace2.png 941w, https://ptworld.net/wp-content/uploads/2022/05/HSM_DAMS-ResourceSpace2-300x180.png 300w, https://ptworld.net/wp-content/uploads/2022/05/HSM_DAMS-ResourceSpace2-768x462.png 768w, https://ptworld.net/wp-content/uploads/2022/05/HSM_DAMS-ResourceSpace2-500x301.png 500w, https://ptworld.net/wp-content/uploads/2022/05/HSM_DAMS-ResourceSpace2-800x481.png 800w" sizes="auto, (max-width: 941px) 100vw, 941px" /></noscript><img decoding="async" width="941" height="566" src="https://ptworld.net/wp-content/uploads/2022/05/HSM_DAMS-ResourceSpace2.png" class="wp-image-373 vp-lazyload" alt="History of Science Museum DAMS: main dashboard with links to add and search for assets, group assets in collections, and so on." srcset="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTQxIiBoZWlnaHQ9IjU2NiIgdmlld0JveD0iMCAwIDk0MSA1NjYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PC9zdmc+" data-src="https://ptworld.net/wp-content/uploads/2022/05/HSM_DAMS-ResourceSpace2.png" data-srcset="https://ptworld.net/wp-content/uploads/2022/05/HSM_DAMS-ResourceSpace2.png 941w, https://ptworld.net/wp-content/uploads/2022/05/HSM_DAMS-ResourceSpace2-300x180.png 300w, https://ptworld.net/wp-content/uploads/2022/05/HSM_DAMS-ResourceSpace2-768x462.png 768w, https://ptworld.net/wp-content/uploads/2022/05/HSM_DAMS-ResourceSpace2-500x301.png 500w, https://ptworld.net/wp-content/uploads/2022/05/HSM_DAMS-ResourceSpace2-800x481.png 800w" data-sizes="auto" loading="eager">
		</a>	</div>
</div>
	<figcaption class="vp-portfolio__item-overlay vp-portfolio__item-overlay-text-align-center">
		<div class="vp-portfolio__item-meta-wrap vp-portfolio__custom-scrollbar">
				<a
		href="https://ptworld.net/portfolio/hsm-dams/"
		tabindex="-1" class="vp-portfolio__item-meta" 	>
	
<h2 class="vp-portfolio__item-meta-title">
	HSM Digital Asset Management</h2>
</a>		</div>
	</figcaption>
			</figure>
					</div>
		
</div>
		</div>
		
</div>
</div>


<p>. </p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
