{"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":"\u795e\u5b78\u6559\u80b2\u7684\u6a02\u7ae0 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"kNT1gOsK3V\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/the-symphony-of-theological-education\/\">\u795e\u5b66\u6559\u80b2\u7684\u4e50\u7ae0<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/the-symphony-of-theological-education\/embed\/#?secret=kNT1gOsK3V\" width=\"600\" height=\"338\" title=\"\u300a \u795e\u5b66\u6559\u80b2\u7684\u4e50\u7ae0\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"kNT1gOsK3V\" 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":"\u795e\u5b78\u6559\u80b2\u7684\u6a02\u7ae0 \u3000\u3000\u795e\u5b78\u6559\u80b2\u5982\u540c\u4e00\u90e8\u7d50\u69cb\u56b4\u8b39\u537b\u53c8\u5145\u6eff\u5275\u610f\u7684\u4ea4\u97ff\u6a02\uff0c\u6bcf\u500b\u8072\u90e8\u90fd\u5728\u8a34\u8aaa\u795e\u5b78\u667a\u6167\u8207\u751f\u547d\u5be6\u8e10\u4ea4\u878d\u7684\u6545\u4e8b\u30022009\u5e74\uff0c\u7576\u6211\u63a5\u4efb\u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662\u9662\u9577\u4e00\u8077\uff0c\u4fbf\u7acb\u5b9a\u5fc3\u5fd7\u6309\u795e\u7684\u5fc3\u610f\u8b5c\u5beb\u9019\u90e8\u8de8\u8d8a\u6642\u7a7a\u7684\u5c6c\u9748\u6a02\u7ae0\u3002\u6211\u5011\u8ffd\u6c42\u7684\u795e\u5b78\u667a\u6167\uff08theologia\uff09\uff0c\u7d55\u975e\u975c\u614b\u7684\u77e5\u8b58\u5806\u780c\uff0c\u800c\u662f\u90a3\u80fd\u5920\u5728\u8907\u96dc\u8655\u5883\u8fa8\u660e\u300c\u8036\u7a4c\u5fc3\u8178\u300d\uff08\u8153\u4e008\uff09\u7684\u751f\u547d\u85dd\u8853\u3002\u9019\u7a2e\u667a\u6167\u5982\u540c\u4ea4\u97ff\u6a02\u4e2d\u6d41\u52d5\u7684\u65cb\u5f8b\uff0c\u5728\u4e0d\u540c\u7684\u751f\u547d\u6a02\u7ae0\u4e2d\u594f\u97ff\u5c6c\u5929\u7684\u548c\u8072\u3002 \u3000\u3000\u5728\u6559\u5b78\u5be6\u8e10\u4e2d\uff0c\u300c\u6d78\u795e\u300d\u5805\u6301\u4e00\u5957\u6211\u5011\u6240\u9818\u53d7\u7684\u6559\u80b2\u7406\u5ff5\uff1a\u795e\u5b78\u6559\u80b2\u61c9\u7576\u662f\u5e2b\u751f\u5171\u540c\u300c\u5728\u795e\u4ee5\u4e0b\u300d\uff08under God\uff09\u7684\u7d42\u8eab\u5b78\u7fd2\u3002\u9019\u7a2e\u5b78\u7fd2\u8981\u6c42\u6211\u5011\u4fdd\u6301\u4e09\u7a2e\u57fa\u672c\u614b\u5ea6\uff0c\u53ef\u6bd4\u4f5c\u8eab\u9ad4\u7684\u4e0d\u540c\u90e8\u4f4d\uff1a\u9996\u5148\u662f\u8b19\u5351\u53d7\u6559\u7684\u8033\uff0c\u6642\u523b\u6e96\u5099\u8046\u807d\u795e\u7684\u8072\u97f3\uff1b\u5176\u6b21\u662f\u654f\u92b3\u8fa8\u8b58\u7684\u773c\uff0c\u80fd\u5920\u770b\u900f\u4e16\u4fd7\u50f9\u503c\u89c0\u7684\u865b\u5984\uff1b\u6700\u91cd\u8981\u7684\u662f\u5be6\u8e10\u771f\u7406\u7684\u624b\uff0c\u9858\u610f\u7a4d\u6975\u56de\u61c9\u7576\u4ee3\u793e\u6703\u7684\u8feb\u5207\u8b70\u984c\u3002\u8eab\u70ba\u795e\u5b78\u6559\u80b2\u8005\uff0c\u6211\u5011\u7279\u5225\u95dc\u6ce8\u8ca7\u7aae\u554f\u984c\u3001\u751f\u614b\u5371\u6a5f\u3001\u9752\u5c11\u5e74\u8207\u9577\u8005\u7684\u9700\u8981\uff0c\u4ee5\u53ca\u7576\u4e0b\u7684\u793e\u6703\u3001\u7d93\u6fdf\u548c\u653f\u6cbb\u502b\u7406\u7684\u6311\u6230\u3002\u9019\u4e9b\u95dc\u6ce8\u4e0d\u662f\u51fa\u65bc\u793e\u6703\u8cac\u4efb\u7684\u8003\u91cf\uff0c\u800c\u662f\u6e90\u81ea\u4e00\u500b\u6df1\u523b\u7684\u4fe1\u5ff5\uff1a\u771f\u6b63\u7684\u795e\u5b78\u667a\u6167\u5fc5\u7136\u5c0e\u5411\u5177\u9ad4\u7684\u751f\u547d\u5be6\u8e10\uff0c\u5fc5\u7136\u5728\u793e\u6703\u73fe\u5be6\u5f70\u986f\u57fa\u7763\u7684\u611b\u3002 \u7b2c\u4e00\u6a02\u7ae0\uff1a\u795e\u5b78\u6c99\u9f8d\u7684\u601d\u60f3\u5c0d\u8a71 \u3000\u3000\u795e\u5b78\u6559\u80b2\u7684\u6bbf\u5802\u88cf\uff0c\u300c\u795e\u5b78\u6c99\u9f8d\u300d\u7336\u5982\u4e00\u6bb5\u5145\u6eff\u5f35\u529b\u7684\u594f\u9cf4\u66f2\uff0c\u5c55\u73fe\u601d\u60f3\u78b0\u649e\u7684\u706b\u82b1\u30022019\u5e74\u79cb\u5b63\uff0c\u7576\u6642\u9999\u6e2f\u793e\u6703\u8207\u6559\u6703\u9762\u81e8\u524d\u6240\u672a\u6709\u7684\u6311\u6230\uff0c\u6211\u5011\u4ee5\u300c\u5c0d\u8ac7\u6f58\u970d\u83ef\u300d\u70ba\u4e3b\u984c\uff0c\u958b\u555f\u4e86\u9019\u6bb5\u601d\u60f3\u5c0d\u8a71\u7684\u65c5\u7a0b\u3002\u4e4b\u5f8c\uff0c\u300c\u6d78\u795e\u300d\u9678\u9678\u7e8c\u7e8c\u5728\u6821\u5167\u3001\u6821\u5916\u3001\uff08\u5f8c\u4f86\u56e0\u75ab\u60c5\u7de3\u6545\u800c\u8f49\u70ba\u5728\uff09\u7dda\u4e0a\uff0c\u8209\u884c\u4e86\u4e00\u9023\u4e32\u7684\u300c\u795e\u5b78\u6c99\u9f8d\u300d\u3002\u9664\u4e86\u300c\u5c0d\u8ac7\u6f58\u970d\u83ef\u300d\u4e4b\u5916\uff0c\u9084\u6709\u300c\u8ac7\u4ee5\u5f17\u6240\u66f8\u300d\u3001\u300c\u9999\u6e2f\u7576\u4e0b\u73fe\u6cc1\u4e4b\u5ba3\u8b1b\u3001\u6559\u5c0e\u548c\u7267\u990a\u300d\u3001\u300c\u4e82\u4e16\u4e2d\u518d\u601d\u6d78\u4fe1\u6703\u7684\u4fe1\u4ef0\u6839\u6e90\u300d\u3001\u300c\u4e82\u4e16\u4e2d\u518d\u601d\u653f\u6559\u5206\u96e2\u300d\u3001\u300c\u4eca\u65e5\u5728\u9999\u6e2f\u5ba3\u8b1b\uff1a\u518d\u601d\u694a\u7267\u8c37\u8207\u6717\u57fa\uff08Thomas Long\uff09\u300d\u3001\u300c\u795e\u5b78\u6709\u751a\u9ebc\u7528\uff1f\u300d\u3001\u300c\u518d\u601d\u6559\u6703\u8ad6\uff1a\u5f9e\u4ee5\u5f17\u6240\u66f8\u53cd\u601d\u6559\u6703\u7684\u4f7f\u547d\u529f\u80fd\u300d\u7b49\u7b49\u3002 \u3000\u3000\u9019\u4e9b\u300c\u795e\u5b78\u6c99\u9f8d\u300d\u63a1\u7528\u5275\u65b0\u7684\u5c0d\u8a71\u5f62\u5f0f\uff0c\u7531\u6211\u5411\u4e3b\u8b1b\u8001\u5e2b\u63d0\u51fa\u4e00\u7cfb\u5217\u96a8\u5fc3\u537b\u53c8\u7528\u5fc3\u800c\u767c\u7684\u5373\u8208\u554f\u984c\uff0c\u5f15\u5c0e\u5728\u5834\u53c3\u8207\u8005\u6df1\u5165\u601d\u8003\u3002\u9019\u7a2e\u5c0d\u8a71\u6a21\u5f0f\u5fb9\u5e95\u6253\u7834\u4e86\u50b3\u7d71\u795e\u5b78\u6559\u80b2\u7684\u55ae\u5411\u50b3\u905e\u6846\u67b6\uff0c\u5275\u9020\u4e86\u4e00\u500b\u958b\u653e\u800c\u6d3b\u6f51\u7684\u601d\u60f3\u4e92\u52d5\u7a7a\u9593\u3002 \u3000\u3000\u96a8\u5f8c\u7684\u6b72\u6708\uff0c\u7121\u8ad6\u662f\u5728\u6821\u5167\u3001\u6821\u5916\uff0c\u9084\u662f\u75ab\u60c5\u671f\u9593\u5728\u7db2\u7d61\u5e73\u53f0\u4e0a\u8209\u884c\u7684\u300c\u795e\u5b78\u6c99\u9f8d\u300d\uff0c\u90fd\u6301\u7e8c\u70ba\u6559\u6703\u63d0\u4f9b\u5bf6\u8cb4\u7684\u795e\u5b78\u53cd\u601d\u8cc7\u6e90\u3002\u6bcf\u4e00\u5834\u300c\u795e\u5b78\u6c99\u9f8d\u300d\u90fd\u50cf\u4e00\u584a\u7cbe\u5fc3\u6253\u78e8\u7684\u7a1c\u93e1\uff0c\u5f9e\u4e0d\u540c\u89d2\u5ea6\u6298\u5c04\u51fa\u4fe1\u4ef0\u771f\u7406\u7684\u5149\u8b5c\u3002\u7279\u5225\u503c\u5f97\u4e00\u63d0\u7684\u662f\uff0c\u75ab\u60c5\u671f\u9593\u300c\u795e\u5b78\u6c99\u9f8d\u300d\u8f49\u70ba\u7dda\u4e0a\u8209\u8fa6\u6642\uff0c\u6211\u5011\u767c\u73fe\u9019\u500b\u5f62\u5f0f"}