{"version":"1.0","provider_name":"Hong Kong Baptist Theological Seminary","provider_url":"https:\/\/www.hkbts.edu.hk\/en","author_name":"wordpress_publish","author_url":"https:\/\/www.hkbts.edu.hk\/en\/?p=author\/wordpress_publish\/","title":"\u6574\u5168\u7684\u5ba3\u6559\u4f7f\u547d\u2014\u2014\u8ca7\u7aae\u4eba\u7684\u798f\u97f3\uff1f - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"KcGFHDD1BG\"><a href=\"https:\/\/www.hkbts.edu.hk\/en\/presmessage\/an-integrated-mission-good-news-for-the-poor\/\">Integral Mission - Gospel for the Poor?<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/en\/presmessage\/an-integrated-mission-good-news-for-the-poor\/embed\/#?secret=KcGFHDD1BG\" width=\"600\" height=\"338\" title=\"\u201cComprehensive Mission\u2014The Gospel for the Poor?\u201d \u2014 Hong Kong Baptist Theological Seminary\" data-secret=\"KcGFHDD1BG\" 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 \u6574\u5168\u7684\u5ba3\u6559\u4f7f\u547d\u2014\u2014\u8ca7\u7aae\u4eba\u7684\u798f\u97f3\uff1f \u8036\u7a4c\u57fa\u7763\u7684\u91cb\u653e\u5de5\u4f5c \u3000\u3000\u8056\u7d93\u4e2d\u6709\u773e\u591a\u95dc\u65bc\u8ca7\u7aae\u4eba\u7684\u8a18\u8ff0\u3002\u8ca7\u7aae\u548c\u53d7\u6b3a\u58d3\u7684\u4eba\u5e38\u88ab\u770b\u70ba\u795e\u6240\u95dc\u61f7\u7684\u5c0d\u8c61\u3002\u8a69\u7bc7\u4e00\u767e\u56db\u5341\u516d\u7bc7\u63d0\u53ca\u96c5\u5404\u7684\u795e\u9867\u5ff5\u90a3\u4e9b\u53d7\u6b3a\u58d3\u7684\u3001\u88ab\u56da\u7981\u7684\u3001\u778e\u773c\u7684\u3001\u53d7\u5c48\u7684\u3001\u6b63\u7fa9\u7684\u3001\u5bc4\u5c45\u7684\u3001\u5be1\u5a66\u548c\u5b64\u5152\uff1a\u300c\u8036\u548c\u83ef\u9020\u5929\u3001\u5730\u3001\u6d77\uff0c\u548c\u5176\u4e2d\u7684\u842c\u7269\uff1b\u4ed6\u5b88\u8aa0\u5be6\uff0c\u76f4\u5230\u6c38\u9060\u3002\u4ed6\u70ba\u53d7\u5c48\u7684\u4f38\u51a4\uff0c\u8cdc\u98df\u7269\u8207\u98e2\u9913\u7684\u3002\u8036\u548c\u83ef\u91cb\u653e\u88ab\u56da\u7684\uff1b\u8036\u548c\u83ef\u958b\u4e86\u778e\u5b50\u7684\u773c\u775b\uff1b\u8036\u548c\u83ef\u6276\u8d77\u88ab\u58d3\u4e0b\u7684\u4eba\u3002\u8036\u548c\u83ef\u559c\u611b\u7fa9\u4eba\u3002\u8036\u548c\u83ef\u4fdd\u8b77\u5bc4\u5c45\u7684\uff0c\u6276\u6301\u5b64\u5152\u548c\u5be1\u5a66\uff0c\u537b\u4f7f\u60e1\u4eba\u7684\u9053\u8def\u5f4e\u66f2\u3002\u300d\u9019\u4e9b\u4eba\u7684\u5171\u540c\u7279\u5fb5\u662f\u6c92\u6709\u6cd5\u5f8b\u3001\u7d93\u6fdf\u3001\u653f\u6cbb\u7684\u5730\u4f4d\u548c\u6b0a\u529b\u3002\u4ed6\u5011\u6c92\u6709\u767c\u8072\u7684\u6b0a\u5229\uff0c\u4e5f\u6c92\u6709\u4ee3\u8a00\u4eba\u3002\u5bc4\u5c45\u8005\u5728\u6cd5\u5f8b\u9762\u524d\u6c92\u6709\u5730\u4f4d\u53ef\u8a00\uff1b\u88ab\u56da\u8005\u5728\u7262\u7344\u7684\u5bc2\u5bde\u4e2d\u67af\u840e\uff1b\u98e2\u9913\u7684\u4eba\u767c\u51fa\u7684\u547b\u541f\u4e5f\u6c92\u4eba\u807d\u898b\u3002\u4e0d\u904e\uff0c\u8a69\u4eba\u537b\u660e\u78ba\u6307\u51fa\uff1a\u96c5\u5404\u7684\u795e\u6703\u6210\u70ba\u9019\u4e9b\u56f0\u82e6\u4eba\u7684\u5e6b\u52a9\u8005\uff0c\u70ba\u4ed6\u5011\u767c\u8072\u3002 \u3000\u3000\u9019\u7a2e\u5c0d\u7121\u52a9\u8005\u7684\u95dc\u61f7\u660e\u660e\u8a18\u8ff0\u65bc\u8056\u7d93\u4e2d\u3002\u795e\u5c0d\u8ca7\u7aae\u4eba\u7684\u95dc\u61f7\uff0c\u4e0d\u50c5\u898b\u65bc\u820a\u7d04\uff0c\u4e5f\u898b\u65bc\u65b0\u7d04\u3002\u820a\u7d04\u5c0d\u793e\u6703\u4e0a\u90a3\u4e9b\u8ca7\u7aae\u4eba\u548c\u7121\u52a9\u8005\u7684\u95dc\u61f7\uff0c\u5177\u9ad4\u5730\u5448\u73fe\u5728\u8036\u7a4c\u57fa\u7763\u7684\u8077\u4e8b\u4e0a\u3002 \u3000\u3000\u6309\u798f\u97f3\u66f8\u7684\u6558\u8ff0\uff0c\u8036\u7a4c\u57fa\u7763\u66fe\u7ad9\u5728\u62ff\u6492\u52d2\u7684\u6703\u5802\uff0c\u5ba3\u7a31\u7942\u81ea\u5df1\u662f\u798f\u97f3\u7684\u4f7f\u8005\uff0c\u64d4\u7576\u91cb\u653e\u8005\u7684\u5de5\u4f5c\u3002\u7942\u7ffb\u958b\u4ee5\u8cfd\u4e9e\u66f8\uff0c\u5411\u773e\u4eba\u8aaa\uff1a\u300c\u4e3b\u7684\u9748\u5728\u6211\u8eab\u4e0a\uff0c\u56e0\u70ba\u4ed6\u7528\u818f\u818f\u6211\uff0c\u53eb\u6211\u50b3\u798f\u97f3\u7d66\u8ca7\u7aae\u7684\u4eba\uff1b\u5dee\u9063\u6211\u5831\u544a\uff1a\u88ab\u64c4\u7684\u5f97\u91cb\u653e\uff0c\u778e\u773c\u7684\u5f97\u770b\u898b\uff0c\u53eb\u90a3\u53d7\u58d3\u5236\u7684\u5f97\u81ea\u7531\uff0c\u5831\u544a\u795e\u6085\u7d0d\u4eba\u7684\u79a7\u5e74\u3002\u300d\uff08\u8def\u56db18-19\uff09 \u3000\u3000\u5728\u751a\u9ebc\u610f\u7fa9\u4e0a\uff0c\u8036\u7a4c\u57fa\u7763\u662f\u91cb\u653e\u8005\uff1f\u5176\u4e2d\u4e00\u500b\u4e3b\u5c0e\u7684\u89c0\u9ede\u662f\uff1a\u8036\u7a4c\u662f\u9748\u9b42\u7684\u6551\u8d16\u8005\uff0c\u7942\u4f7f\u4eba\u5f9e\u7f6a\u60e1\u4e2d\u5f97\u91cb\u653e\uff0c\u5e36\u7d66\u4eba\u6c38\u9060\u7684\u751f\u547d\u3002\u7136\u800c\uff0c\u8036\u7a4c\u7684\u91cb\u653e\u4e0d\u6b62\u65bc\u6b64\u3002 \u91cb\u653e\u8ca7\u7aae\u4eba\u7684\u798f\u97f3\uff1f \u3000\u3000\u5f9e\u8036\u7a4c\u57fa\u7763\u5728\u4e16\u4e0a\u7684\u8077\u4e8b\uff0c\u6211\u5011\u770b\u898b\u7942\u95dc\u5fc3\u4eba\u751f\u547d\u7684\u6574\u9ad4\u3002\u8036\u7a4c\u5728\u66e0\u91ce\u70ba\u7fa4\u773e\u9810\u5099\u98df\u7269\uff0c\u7942\u8aaa\uff1a\u300c\u6211\u6190\u61ab\u9019\u773e\u4eba\uff1b\u56e0\u70ba\u4ed6\u5011\u540c\u6211\u5728\u9019\u88e1\u5df2\u7d93\u4e09\u5929\uff0c\u4e5f\u6c92\u6709\u5403\u7684\u4e86\u3002\u6211\u4e0d\u9858\u610f\u53eb\u4ed6\u5011\u9913\u8457\u56de\u53bb\uff0c\u6050\u6015\u5728\u8def\u4e0a\u56f0\u4e4f\u3002\u300d\uff08\u592a\u5341\u4e9432\uff1b\u53c3\u53ef\u516b2-3\uff09\u7e31\u7136\u7942\u62d2\u7d55\u4ee5\u795e\u8e5f\u5438\u5f15\u4eba\uff0c\u7942\u537b\u4e0d\u6703\u62d2\u7d55\u524d\u4f86\u6c42\u91ab\u7684\u75c5\u4eba\u3002\u99ac\u592a\u798f\u97f3\u5341\u56db\u7ae014\u7bc0\u8a18\u8ff0\uff1a\u300c\u8036\u7a4c\u51fa\u4f86\uff0c\u898b\u6709\u8a31\u591a\u7684\u4eba\uff0c\u5c31\u6190\u61ab\u4ed6\u5011\uff0c\u6cbb\u597d\u4e86\u4ed6\u5011\u7684\u75c5\u4eba\u3002\u300d\u9019\u90fd\u662f\u8036\u7a4c\u57fa\u7763\u7684\u91cb\u653e\u5de5\u4f5c\uff0c\u7942\u91cb\u653e\u7aae\u4eba\u3001\u75c5\u4eba\u548c\u7121\u52a9\u8005\u3002 \u3000\u3000\u5c0d\u4e0d\u5c11\u57fa\u7763\u5f92\u800c\u8a00\uff0c\u57fa\u7763\u7684\u798f\u97f3\u662f\u8ca7\u7aae\u4eba\u7684\u798f\u97f3\uff0c\u7942\u7684\u91cb\u653e\u5de5\u4f5c\u662f\u8056\u7d93\u4fe1\u606f\u7684\u4e2d\u5fc3\u3002\u4ed6\u5011\u8a8d\u70ba\u8056\u7d93\u6240\u555f\u793a\u7684\u795e\u7279\u5225\u5782\u9867\u90a3\u4e9b\u8ca7\u7aae\u3001\u53d7\u58d3\u8feb\u7684\u4eba\uff0c\u5305\u62ec\u5b64\u5152\u3001\u5be1\u5a66\u3001\u88ab\u56da\u7684\u3001\u4e5e\u4e10\u3001\u9732\u5bbf\u8005\uff0c\u4ee5\u53ca\u4e0d\u516c\u7fa9\u7684\u653f\u6cbb\u548c\u7d93\u6fdf\u7cfb\u7d71\u7684\u53d7\u5bb3\u8005\u3002\u6559\u6703\u662f\u795e\u7684\u6551\u8d16\u548c\u91cb\u653e\u7684\u8e10\u884c\u8005\uff0c\u5b83\u5176\u4e2d\u4e00\u500b\u4e3b\u8981\u7684\u53ec\u547d\uff0c\u662f\u5c0b\u6c42\u653f"}