{"version":"1.0","provider_name":"\u57fa\u7763\u6559\u9748\u5be6\u5354\u6703","provider_url":"https:\/\/hohcs.org.hk\/en\/","author_name":"Admin HOHCS","author_url":"https:\/\/hohcs.org.hk\/en\/author\/hohcs_admin\/","title":"\u9748\u5be6\u5275\u8fa6\u4eba\u7c21\u4ecb","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"wmtUKida0A\"><a href=\"https:\/\/hohcs.org.hk\/en\/hohf\/\">\u9748\u5be6\u5275\u8fa6\u4eba\u7c21\u4ecb<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/hohcs.org.hk\/en\/hohf\/embed\/#?secret=wmtUKida0A\" width=\"600\" height=\"338\" title=\"&#8220;\u9748\u5be6\u5275\u8fa6\u4eba\u7c21\u4ecb&#8221; &#8212; \u57fa\u7763\u6559\u9748\u5be6\u5354\u6703\" data-secret=\"wmtUKida0A\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\n\/* ]]> *\/\n<\/script>\n","description":"\u9748\u5be6\u5275\u8fa6\u4eba\u7c21\u4ecb \u9748\u5be6\u5275\u8fa6\u4eba\u7c21\u4ecb \u53f8\u52d9\u9053\u6559\u58eb1911\u5e74\u751f\u65bc\u632a\u5a01\uff0c\u5979\u81ea\u5c0f\u4fbf\u5e0c\u671b\u6210\u70ba\u80fd\u7167\u9867\u75c5\u4eba\u7684\u8b77\u58eb\uff0c\u56e0\u6b64\uff0c\u4e2d\u5b78\u7562\u696d\u5f8c\u4fbf\u5165\u8b80\u8b77\u58eb\u5b78\u6821\u30021932\u5e74\uff0c\u5979\u8499\u53ec\u5f97\u6551\u4e26\u63a5\u53d7\u6c34\u79ae\u52a0\u5165\u6559\u6703\uff0c\u5728\u9748\u4fee\u548c\u79b1\u544a\u4e2d\uff0c\u53f8\u6559\u58eb\u6e05\u695a\u795e\u547c\u53ec\u5979\u5f80\u4e2d\u570b\u5167\u5730\u50b3\u63da\u798f\u97f3\uff0c\u65bc\u662f\u4fbf\u5f80\u82f1\u570b\u502b\u6566\u5167\u5730\u6703\u5ba3\u6559\u58eb\u5b78\u6821\u53d7\u8a13\u4f5c\u5ba3\u6559\u58eb\u3002 \u00a0 \u53f8\u6559\u58eb\u737b\u4e0a\u903e\u4e8c\u5341\u5e74\u5728\u9999\u6e2f\u53ca\u4e2d\u570b\u670d\u4e8b\u53ca\u50b3\u63da\u798f\u97f3\uff0c\u5728\u5979\u5e36\u9818\u4e0b\uff0c\u9748\u5be6\u5efa\u7acb\u80ba\u75c5\u7642\u990a\u9662\u3001\u958b\u8fa6\u6069\u5149\u8b77\u5e7c\u9662\u548c\u8b77\u58eb\u5b78\u6821\u3002\u5979\u4e00\u908a\u7167\u9867\u75c5\u4eba\uff0c\u4e00\u908a\u5ba3\u63da\u798f\u97f3\u3002\u76f4\u81f31978\u5e74\uff0c\u53f8\u6559\u58eb\u624d\u6b63\u5f0f\u9000\u4f11\uff0c\u8fd4\u56de\u632a\u5a01\u5b9a\u5c45\u3002 \u69ae\u7372\u52f3\u929c \u53f8\u6559\u58eb\u4e00\u751f\u50b3\u5947\uff0c\u5728\u793e\u6703\u670d\u52d9\u548c\u798f\u97f3\u5de5\u4f5c\u7684\u8ca2\u737b\uff0c\u5f97\u5230\u793e\u6703\u80af\u5b9a\uff0c\u5c62\u7372\u52f3\u929c\u3002 1961\u5e74: \u5357\u4e01\u683c\u723e\u52f3\u7ae0\uff08Florence Nightingale Medal\uff09 1963\u5e74: First Class Saint Olav Knight&#8217;s Cross 1979\u5e74: \u9999\u6e2f\u653f\u5e9c\u9812\u6388Order of the British Empire\u52f3\u7ae0 \u53f8\u52d9\u9053\u6559\u58eb\u5c0a\u91cd\u751f\u547d\u535a\u7269\u9928 \u5982\u6b32\u7d30\u5473\u53f8\u6559\u58eb\u4e00\u751f\u7684\u7d93\u6b77\uff0c\u53ef\u53c3\u8003\u9748\u5be6\u520a\u7269\u6216\u700f\u89bd\u53f8\u52d9\u9053\u6559\u58eb\u5c0a\u91cd\u751f\u547d\u535a\u7269\u9928\u7db2\u9801 http:\/\/www.sisterannie.org\/","thumbnail_url":"https:\/\/hohcs.org.hk\/wp-content\/uploads\/2021\/06\/03-4-740x500.jpg"}