{"version":"1.0","provider_name":"Hong Kong Baptist Theological Seminary","provider_url":"https:\/\/www.hkbts.edu.hk\/en","author_name":"wordpress_dist","author_url":"https:\/\/www.hkbts.edu.hk\/en\/?p=author\/wordpress_dist\/","title":"\u57fa\u7763\u6559\u7814\u7a76\u6587\u5b78\u78a9\u58eb \/ \u6df1\u9020\u6587\u6191 \/ \u6df1\u9020\u8b49\u66f8\u8ab2\u7a0b\uff08\u5b78\u4f4d\u8ab2\u7a0b\uff09 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"co6zV6Vtar\"><a href=\"https:\/\/www.hkbts.edu.hk\/en\/dist\/macs\/\">Master of Arts \/ Postgraduate Diploma \/ Postgraduate Certificate in Christian Studies (Degree Programme)<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/en\/dist\/macs\/embed\/#?secret=co6zV6Vtar\" width=\"600\" height=\"338\" title=\"\u201cMaster of Arts \/ Postgraduate Diploma \/ Postgraduate Certificate in Christian Studies (Degree Programme)\u201d \u2014 Hong Kong Baptist Theological Seminary\" data-secret=\"co6zV6Vtar\" 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":"\u8ab2\u7a0b\u53ca\u5165\u5b78 \u8fd4\u56de\u4e3b\u9801 \u57fa\u7763\u6559\u7814\u7a76\u6587\u5b78\u78a9\u58eb \u53ca \u57fa\u7763\u6559\u7814\u7a76\u6df1\u9020\u6587\u6191 \/ \u6df1\u9020\u8b49\u66f8 \uff08\u5b78\u4f4d\u8ab2\u7a0b\uff09 Please refer to the Chinese page. \u8ab2\u7a0b\u7c21\u4ecb \u65e8\u5728\u57f9\u80b2\u6709\u5fd7\u65bc\u57fa\u7763\u6559\u6a5f\u69cb\u670d\u4f8d\u6216\u5728\u6559\u6703\u4e2d\u6709\u6548\u4e8b\u5949\u7684\u4fe1\u5f92\u9818\u8896\u3002\u5b8c\u6210\u8ab2\u7a0b\u5f8c\uff0c\u53ef\u929c\u63a5\u672c\u9662\u7684\u78a9\u58eb\u8ab2\u7a0b\u3002 \u7db2\u4e0a\u8ab2\u5802\u9ad4\u9a57 \u6559\u6703\u6b77\u53f2 \u5433\u570b\u5091\u6559\u6388\u00a0 https:\/\/www.youtube.com\/watch?v=9t6sgzNqWnI \u8ab2\u7a0b\u7279\u8272 \u8de8\u57df\u5b78\u7fd2\uff1a\u8b93\u4e16\u754c\u5404\u5730\u7684\u83ef\u4eba\uff0c\u53ef\u4ee5\u96a8\u6642\u96a8\u5730\u3001\u5feb\u6377\u3001\u65b9\u4fbf\u5730\u5b78\u7fd2\u8ab2\u7a0b\u3002 \u591a\u5143\u5b78\u7fd2\uff1a\u8ab2\u7a0b\u6db5\u84cb\u8056\u7d93\u7814\u7a76\u3001\u795e\u5b78\u7406\u8ad6\u548c\u5be6\u8e10\u61c9\u7528\u4e09\u5927\u7bc4\u7587\uff0c\u5e6b\u52a9\u540c\u5b78\u5efa\u7acb\u7a69\u56fa\u7684\u78a9\u58eb\u7a0b\u5ea6\u8056\u7d93\u53ca\u795e\u5b78\u57fa\u790e\u3002 \u5f48\u6027\u5b78\u7fd2\uff1a\u79d1\u76ee\u7531\u672c\u9662\u6821\u672c\u90e8\u8001\u5e2b\u4efb\u6559\uff0c\u8ab2\u5802\u4ee5\u9304\u64ad\u5f62\u5f0f\u9032\u884c\u3002\u540c\u5b78\u53ef\u5728\u7db2\u4e0a\u91cd\u6eab\u5167\u5bb9\uff0c\u4e26\u6309\u81ea\u5df1\u7684\u9700\u8981\u548c\u5b78\u7fd2\u9032\u5ea6\u9748\u6d3b\u5730\u5b78\u7fd2\u3002 \u9069\u5207\u5b78\u7fd2\uff1a\u8ab2\u7a0b\u8a2d\u8a08\u4ee5\u5b78\u751f\u70ba\u672c\uff0c\u6bcf\u79d1\u5747\u8a2d\u52a9\u6559\u63d0\u4f9b\u5354\u52a9\u3002 \u6301\u7e8c\u5b78\u7fd2\uff1a\u65e5\u5f8c\u5831\u8b80\u6821\u672c\u90e8\u9053\u5b78\u78a9\u58eb\u6216\u57fa\u7763\u6559\u7814\u7a76\u78a9\u58eb\u8ab2\u7a0b\uff0c\u53ef\u4ee5\u7533\u8acb\u8c41\u514d\u90e8\u5206\u5b78\u5206\u3002 \u5165\u5b78\u8cc7\u683c \u5df2\u91cd\u751f\u5f97\u6551\u3001\u5fc3\u5fd7\u6210\u719f\u53ca\u5177\u826f\u597d\u54c1\u683c\u4e4b\u57fa\u7763\u5f92\uff0c\u53d7\u6d78\u52a0\u5165\u6559\u6703\u4e09\u5e74\u6216\u4ee5\u4e0a \u6301\u6709\u672c\u9662\u8a8d\u53ef\u4e4b\u5927\u5b78\u5b78\u4f4d\u6216\u540c\u7b49\u5b78\u6b77 \u7372\u6559\u6703\u63a8\u85a6 \u901a\u904e\u672c\u9662\u4e4b\u7b46\u8a66\u53ca\u9762\u8a66 \u5b78\u5236 \u4e00\u5e74\u4e09\u5b78\u671f\uff1a\u79cb\u5b63\uff08\u6bcf\u5e7410\u6708\u81f31\u6708\uff09\u3001\u6625\u5b63\uff08\u6bcf\u5e742\u6708\u81f35\u6708\uff09\u3001\u590f\u5b63\uff08\u6bcf\u5e746\u6708\u81f39\u6708\uff09\u3002 \u6bcf\u79d1\u8a2d\u6709\u9304\u5f71\u8ab2\u5802\u3001\u95b1\u8b80\u53ca\u7fd2\u4f5c\uff0c\u540c\u5b78\u5fc5\u9808\u4f9d\u7167\u6307\u793a\uff0c\u5728\u6709\u6548\u671f\u5167\u5b8c\u6210\u3002 \u79d1\u76ee\u5b78\u5206 \u5802\u6578 \u9304\u5f71\u8ab2\u5802\u6642\u6578 3 14\u5802 \u4e0d\u5c11\u65bc24\u5c0f\u6642 2 9-14\u5802 \u4e0d\u5c11\u65bc16\u5c0f\u6642 \u540c\u5b78\u53ef\u4ee5\u5728\u9059\u8ddd\u6559\u80b2\u8ab2\u7a0b\u4e3b\u4efb\u63a8\u85a6\u3001\u6559\u52d9\u8655\u6279\u51c6\u4e0b\uff0c\u4fee\u8b80\u6821\u672c\u90e8\u6216\u4fe1\u5f92\u795e\u5b78\u6559\u80b2\u8ab2\u7a0b\u7684\u540c\u7d1a\u79d1\u76ee\uff1b\u60df\u4e0a\u9650\u4e0d\u80fd\u8d85\u904e\u6709\u95dc\u5b78\u4f4d20%\u4e4b\u5b78\u5206\uff1b\u5982\u9078\u4fee\u6821\u672c\u90e8\u8ab2\u7a0b\uff0c\u5b78\u8cbb\u4ee5\u6821\u672c\u90e8\u8a08\u7b97\u3002 \u8ab2\u7a0b\u7d50\u69cb \u700f\u89bd\u8ab2\u7a0b\u7d50\u69cb \u8cbb\u7528 \u5831\u540d\u8cbb\uff1aHK$300\uff1b\u672c\u9662\u300c\u9059\u8ddd\u6559\u80b2\u8ab2\u7a0b\u300d\u7562\u696d\u751f HK$200 \u5b78\u8cbb\uff1a\u6bcf\u5b78\u5206HK$1, 780 \u65bc2026-27\u5b78\u5e74\u671f\u9593\u8a3b\u518a\u300c\u9059\u8ddd\u6559\u80b2\u8ab2\u7a0b\u300d\u5b78\u4f4d\u79d1\u76ee\uff0c\u5e74\u9f6130\u6b72\u6216\u4ee5\u4e0b\u53ef\u4eab\u5b78\u8cbb\uff18\u6298\u512a\u60e0\uff0c\u5e74\u9f6160\u6b72\u6216\u4ee5\u4e0a\u5247\u53ef\u4eab\u5b78\u8cbb\uff16\u6298\u512a\u60e0\u3002 \u540c\u4e00\u6559\u6703\u6216\u6a5f\u69cb\u5982\u6709\u4e09\u4eba\u6216\u4ee5\u4e0a\u96c6\u9ad4\u5831\u8b80\u540c\u4e00\u79d1\u76ee\uff0c\u53ef\u4eab\u5b78\u8cbb\uff19\u6298\u512a\u60e0\u3002 \u672c\u9662\u6821\u672c\u90e8\u50b3\u9053\u88dd\u5099\u8ab2\u7a0b\u4e4b\u7562\u696d\u751f\uff0c\u6216\u73fe\u65bc\u6559\u6703\u64d4\u4efb\u5168\u8077\u6559\u7267\u540c\u5de5\uff08\u5305\u62ec\u798f\u97f3\u5e79\u4e8b\uff0c\u4f46\u4e0d\u5305\u62ec\u884c\u653f\u5e79\u4e8b\uff09\uff0c\u5747\u53ef\u4eab\u6709\u5b78\u8cbb\uff18\u6298\u512a\u60e0\u3002 \u9999\u6e2f\u6d78\u4fe1\u6703\u806f\u6703\u6703\u53cb\u53ef\u4eab\u5b78\u8cbb\uff18\u6298\u512a\u60e0\u3002 \u5df2\u7e73\u8cbb\u7528\uff0c\u6982\u4e0d\u9000\u9084\uff0c\u4e5f\u4e0d\u53ef\u8f49\u4f5c\u5176\u4ed6\u7528\u9014 \u622a\u6b62\u5831\u540d\u65e5\u671f \u9999\u6e2f\u00a03\u670820\u65e5\u30017\u670820\u65e5\u300111\u670820\u65e5 \u6d77\u5916\u00a02\u670820\u65e5\u30016\u670820\u65e5\u300110\u670820\u65e5 \u5165\u5b78\u7533\u8acb\u9808\u77e5"}