{"version":"1.0","provider_name":"\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662","provider_url":"https:\/\/www.hkbts.edu.hk\/zh_cn","author_name":"wordpress_publish","author_url":"https:\/\/www.hkbts.edu.hk\/zh_cn\/?p=author\/wordpress_publish\/","title":"\u5ba3\u6559\u4f7f\u547d\u8207\u8056\u9748 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"HIMAffDf6s\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/missio-dei-and-the-holy-spirit\/\">\u5ba3\u6559\u4f7f\u547d\u4e0e\u5723\u7075<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/missio-dei-and-the-holy-spirit\/embed\/#?secret=HIMAffDf6s\" width=\"600\" height=\"338\" title=\"\u300a \u5ba3\u6559\u4f7f\u547d\u8207\u8056\u9748 \u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662\" data-secret=\"HIMAffDf6s\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\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\/\/# sourceURL=https:\/\/www.hkbts.edu.hk\/wp-includes\/js\/wp-embed.js\n<\/script>","description":"\u5b78\u9662\u7c21\u4ecb \u8fd4\u56de\u4e3b\u9801 \u9662\u9577\u7684\u8a71 \u66f9\u5049\u5f64\u9662\u9577 \u5ba3\u6559\u4f7f\u547d\u8207\u8056\u9748 \u795e\u7684\u5ba3\u6559\u4f7f\u547d\uff08Missio dei\uff09 \u3000\u3000\u6559\u6703\u7684\u5ba3\u6559\u795e\u5b78\u7684\u4e00\u500b\u91cd\u8981\u601d\u60f3\u662f\u300c\u795e\u7684\u5ba3\u6559\u4f7f\u547d\u300d\uff08missio dei\uff09\u3002\u795e\u7684\u5ba3\u6559\u4f7f\u547d\u5f37\u8abf\u795e\u5728\u4e16\u754c\u4e2d\u7684\u5dee\u9063\u548c\u6559\u6703\u7684\u89d2\u8272\uff1a\u795e\u5dee\u9063\u6559\u6703\u50b3\u798f\u97f3\u7d66\u842c\u6c11\u807d\uff08\u53ef\u5341\u516d15\uff09\uff0c\u53eb\u842c\u6c11\u4f5c\u4e3b\u7684\u9580\u5f92\uff08\u592a\u4e8c\u5341\u516b19\uff09\uff1b\u6559\u6703\u662f\u8036\u7a4c\u57fa\u7763\u6240\u547c\u559a\u3001\u662f\u8036\u7a4c\u57fa\u7763\u7684\u5ba3\u6559\u4f7f\u547d\u5b55\u80b2\u51fa\u4f86\u7684\u9580\u5f92\u7fa4\u9ad4\u3002 \u3000\u3000\u66f4\u6df1\u5165\u548c\u660e\u78ba\u7684\uff0cmissio dei\u00a0\u6307\u51fa\uff1a\u795e\u662f\u4e00\u4f4d\u5ba3\u6559\u7684\u795e\uff1b\u5ba3\u6559\u4f7f\u547d\u662f\u76f4\u63a5\u4f86\u81ea\u795e\u7684\u672c\u6027\uff0c\u800c\u4e0d\u662f\u51fa\u65bc\u6559\u6703\uff1b\u5ba3\u6559\u662f\u795e\u81ea\u8eab\u7684\u6d3b\u52d5\uff0c\u662f\u795e\u5dee\u9063\u6559\u6703\u53c3\u8207\u795e\u5728\u4e16\u754c\u4e2d\u7684\u4f7f\u547d\u548c\u6d3b\u52d5\u3002\u90a3\u5c31\u662f\uff1a\u6b63\u5982\u8056\u7236\u600e\u6a23\u5dee\u9063\u8056\u5b50\uff0c\u8056\u7236\u548c\u8056\u5b50\u600e\u6a23\u5dee\u9063\u8056\u9748\uff0c\u8056\u7236\u3001\u8056\u5b50\u3001\u8056\u9748\u4e5f\u7167\u6a23\u5dee\u9063\u6559\u6703\u9032\u5165\u4e16\u754c\uff0c\u800c\u6559\u6703\u5c31\u662f\u90a3\u5be6\u5728\u7684\u3001\u53ef\u7d93\u9a57\u7684\u3001\u53ef\u898b\u7684\u6559\u6703\uff0c\u800c\u4e0d\u662f\u7406\u60f3\u7684\u3001\u4e0d\u80fd\u7d93\u9a57\u7684\u3001\u4e0d\u53ef\u898b\u7684\u6559\u6703\u3002 \u3000\u3000\u5f9emissio dei \u7684\u795e\u5b78\u89d2\u5ea6\u53bb\u7406\u89e3\uff0c\u53ef\u898b\u7684\u6559\u6703\u662f\u795e\u7684\u5ba3\u6559\u4f7f\u547d\u7684\u7d50\u679c\u3002\u4e8b\u5be6\u662f\uff1a\u5728\u798f\u97f3\u50b3\u9054\u6b50\u6d32\u4ee5\u5148\uff0c\u6b50\u6d32\u662f\u6c92\u6709\u6559\u6703\u7684\u3002\u4efb\u4f55\u6559\u6703\u7684\u6b77\u53f2\u90fd\u6e90\u65bc\u795e\u7684\u5ba3\u6559\u4f7f\u547d\u7684\u6d3b\u52d5\u3002\u6559\u6703\u8207\u5ba3\u6559\u662f\u4e0d\u80fd\u5206\u958b\u7684\u3002\u6559\u6703\u4e0d\u80fd\u6c92\u6709\u5ba3\u6559\uff0c\u5ba3\u6559\u4e0d\u80fd\u6c92\u6709\u6559\u6703\u3002\u6559\u6703\u7684\u672c\u8cea\u662f\u5ba3\u6559\u3002 \u8056\u9748\u662f\u5ba3\u6559\u6700\u6839\u672c\u7684\u4f86\u6e90 \u3000\u3000\u7136\u800c\uff0c\u6559\u6703\u8981\u7262\u8a18\u300c\u795e\u7684\u5ba3\u6559\u300d\u662f\u795e\u5728\u4e16\u754c\u4e2d\u7684\u611b\u7684\u4f5c\u70ba\uff1b\u56e0\u70ba\u795e\u611b\u4e16\u4eba\uff0c\u6240\u4ee5\u624d\u6709\u5ba3\u6559\u3002\u795e\u5dee\u9063\u6559\u6703\u53bb\u53c3\u8207\u795e\u5728\u4e16\u754c\u4e2d\u7684\u6d3b\u52d5\uff0c\u9019\u662f\u6559\u6703\u7684\u7279\u6b0a\u3002\u7576\u6559\u6703\u898b\u8b49\u795e\u5728\u4e16\u754c\u6b77\u53f2\u4e2d\u7684\u5de5\u4f5c\uff0c\u5c31\u662f\u53c3\u8207\u795e\u7684\u5ba3\u6559\u3002\u56e0\u6b64\uff0c\u795e\u7684\u5ba3\u6559\u8d85\u51fa\u6559\u6703\u7684\u7bc4\u570d\u3002\u795e\u7684\u5ba3\u6559\u5305\u62ec\u6574\u500b\u4e16\u754c\u3002\u4e09\u4e00\u795e\u85c9\u8457\u8056\u9748\u7684\u5de5\u4f5c\uff0c\u5728\u4e16\u754c\u7684\u6b77\u53f2\u4e2d\u5f70\u986f\u7942\u7684\u570b\u5ea6\u3002\u5728\u5ba3\u6559\u6d3b\u52d5\u4e2d\uff0c\u6559\u6703\u6240\u63a5\u89f8\u7684\u4e16\u754c\uff0c\u662f\u795e\u85c9\u8457\u8056\u9748\u6240\u4f5c\u7684\u6551\u6069\u5de5\u4f5c\u7684\u4e16\u754c\u3002\u8056\u9748\u662f\u5ba3\u6559\u6700\u6839\u672c\u7684\u4f86\u6e90\u3002 \u3000\u3000\u9019\u7a2e\u5f37\u8abf\u6559\u6703\u53c3\u8207\u795e\u7684\u5ba3\u6559\u4f7f\u547d\u7684\u795e\u5b78\u4fe1\u5ff5\u662f\uff1a\u6559\u6703\u751f\u65bc\u4e94\u65ec\u7bc0\uff0c\u6709\u8056\u9748\u7684\u540c\u5728\u548c\u52a0\u80fd\uff0c\u53bb\u6210\u5c31\u8036\u7a4c\u57fa\u7763\u4ea4\u7d66\u5979\u7684\u4f7f\u547d\u2014\u2014\u5728\u4e16\u754c\u4e0a\u7684\u4f7f\u547d\u3002\u56e0\u6b64\uff0c\u6559\u6703\u7684\u5ba3\u6559\u4f7f\u547d\u662f\u8207\u8056\u9748\u606f\u606f\u76f8\u95dc\u7684\u3002 \u6559\u6703\u7684\u5ba3\u6559\u662f\u795e\u8056\u9748\u540c\u5728\u7684\u7d50\u679c \u3000\u3000\u5728\u4e09\u4e00\u795e\u4e2d\uff0c\u8056\u9748\u662f\u795e\u7684\u751f\u547d\u6c23\u606f\u3002\u5f9e\u820a\u7d04\u7684\u6558\u4e8b\u53ef\u898b\uff0c\u4ee5\u8272\u5217\u7b49\u5019\u90a3\u4f4d\u8056\u9748\u6240\u300c\u5c45\u4f4f\u300d\u7684\u4eba\u7269\uff08\u8cfd\u5341\u4e002-9\uff09\u3002\u6309\u65b0\u7d04\u7684\u6558\u8ff0\uff0c\u8036\u7a4c\u6b63\u5c31\u662f\u8056\u9748\u6240\u5c45\u4f4f\u7684\u4eba\u7269\u3002\u8036\u7a4c\u57fa\u7763\u63a5\u53d7\u8056\u9748\uff0c\u4ee5\u81f4\u80fd\u5920\u5c07\u8056\u9748\u8cdc\u7d66\u4eba\u3002 \u3000\u3000\u5728\u4f7f\u5f92\u884c\u50b3\u4e2d\uff0c\u8056\u9748\u88ab\u770b\u70ba\u90a3\u4f4d\u6307\u5c0e\u6559\u6703\u3001\u52a0\u529b\u7d66\u6559\u6703\u7684\u795e\u3002\u81ea\u8036\u7a4c\u57fa\u7763\u5347\u5929\uff0c\u8056\u9748\u4e00\u76f4\u8207\u5ba3\u6559\u4e2d\u7684\u6559\u6703\u4f34\u884c\u3002\u521d\u671f\u6559\u6703\u9806\u8457\u8056\u9748\u6240\u5f15\u5c0e\u7684\u65b9\u5411\u3002\u9806\u8457\u8056\u9748\uff0c\u6559\u6703\u514d\u9664\u5916\u90a6\u4fe1\u5f92\u9075\u884c\u5272\u79ae\u7684\u898f\u77e9\u3002\u9806\u8457\u8056\u9748\uff0c\u5f7c\u5f97\u5c07\u6551\u6069\u7684\u9053\u7406\u50b3\u7d66\u5916\u90a6\u7684\u8ecd\u5b98\u54e5\u5c3c\u6d41\uff0c\u800c\u4fdd\u7f85\u4ea6\u50b3\u798f\u97f3\u7d66\u5916\u90a6\u4eba\u3002\u8056\u9748\u628a\u6559\u6703\u5206"}