{"version":"1.0","provider_name":"Hong Kong Baptist Theological Seminary","provider_url":"https:\/\/www.hkbts.edu.hk\/en","author_name":"Jia| Li","author_url":"https:\/\/www.hkbts.edu.hk\/en\/?p=author\/ljia\/","title":"\u57fa\u7763\u6559\u7814\u7a76\u6587\u5b78\u78a9\u58eb\/\u6df1\u9020\u6587\u6191\/\u6df1\u9020\u8b49\u66f8\u8ab2\u7a0b\u7533\u8acb\u8cc7\u683c\u8207\u624b\u7e8c - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"cveEOZdFNb\"><a href=\"https:\/\/www.hkbts.edu.hk\/en\/lted\/pgminfo_macs_app\/\">Application Qualifications and Procedures for Master of Arts\/Postgraduate Diploma\/Postgraduate Certificate Program in Christian Studies<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/en\/lted\/pgminfo_macs_app\/embed\/#?secret=cveEOZdFNb\" width=\"600\" height=\"338\" title=\"\u201c&quot;Application Qualifications and Procedures for Master of Arts\/Postgraduate Diploma\/Postgraduate Certificate Programs in Christian Studies&quot; \u2014 Hong Kong Baptist Theological Seminary\" data-secret=\"cveEOZdFNb\" 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\/\u6df1\u9020\u6587\u6191\/\u6df1\u9020\u8b49\u66f8\u8ab2\u7a0b\u7533\u8acb\u8cc7\u683c\u8207\u624b\u7e8c Please refer to the Chinese page. \u5165\u5b78\u8cc7\u683c \u91cd\u751f\u5f97\u6551\u3001\u5fc3\u5fd7\u6210\u719f\u53ca\u884c\u70ba\u826f\u597d\u4e4b\u57fa\u7763\u5f92\uff0c\u4e14\u5df2\u53d7\u6d78\u52a0\u5165\u6559\u6703\u4e09\u5e74\u6216\u4ee5\u4e0a\u3002 \u5177\u5927\u5b78\u5b78\u4f4d\u6216\u540c\u7b49\u5b78\u6b77\u3002 \u901a\u904e\u672c\u9662\u4e4b\u300c\u4e2d\u3001\u82f1\u6587\u7b46\u8a66\u300d\u53ca\u300c\u9762\u8a66\u300d\u3002 \u8fd4\u56de\u9801\u9802 \u7533\u8acb\u5165\u5b78\u624b\u7e8c \u8acb\u586b\u59a5\u300c\u5165\u5b78\u7533\u8acb\u8868\u300d\u3001\u300c\u500b\u4eba\u6a94\u6848\u8cc7\u6599\u8655\u7406\u540c\u610f\u66f8\u300d\u3001\u300c\u5b78\u751f\u5165\u5b78\u5fd7\u9858\u66f8\u300d\u53ca\u300c\u5065\u5eb7\u554f\u5377\u300d\u5f8c\uff0c\u9023\u540c\u4e0b\u5217\u6587\u4ef6\uff08a-g\uff09\u4e00\u4f75\u4ea4\u56de\u672c\u90e8\u3002 \u7533\u8acb\u4eba\u8fd1\u7167\u5169\u5f35\uff0c\u5176\u4e2d\u4e00\u5f35\u8cbc\u65bc\u5165\u5b78\u7533\u8acb\u8868\u7b2c1\u9801\uff08\u5c3a\u5bf8\uff1a\u7d042.5 cm X 3 cm\uff09\uff1b \u7562\u696d\u8b49\u66f8\u53ca\u6210\u7e3e\u55ae\uff08\u5305\u62ec\u6703\u8003\u3001\u6587\u6191\u8003\u8a66\u3001\u9810\u79d1\u3001\u5927\u5b78\u6216\u795e\u5b78\u9662\uff09\u526f\u672c\uff1b \u500b\u4eba\u5f97\u6551\u898b\u8b49\u53ca\u4e8b\u5949\u898b\u8b49\uff08\u5408\u5171\u7d041000-1500\u5b57\uff09\uff1b \u4e09\u4efd\u586b\u59a5\u4e4b\u63a8\u85a6\u66f8\uff1a\u7533\u8acb\u4eba\u9808\u63d0\u540d\u4e09\u4f4d\u8aee\u8a62\u4eba\uff0c\u672c\u90e8\u5c07\u5b89\u6392\u628a\u63a8\u85a6\u8868\u683c\u4ea4\u4e88\u6709\u95dc\u4eba\u58eb\u586b\u5beb\uff0c\u4e26\u8acb\u8aee\u8a62\u4eba\u5c07\u586b\u59a5\u4e4b\u63a8\u85a6\u66f8\u76f4\u63a5\u90f5\u5bc4\u6216\u96fb\u90f5\u4e88\u672c\u90e8\uff0c\u5167\u5bb9\u4fdd\u5bc6\u3002\u8aee\u8a62\u4eba\u61c9\u70ba\u7533\u8acb\u4eba\u6240\u5c6c\u5802\u6703\u4e4b\u6559\u7267\u9577\u57f7\u3001\u4e8b\u5949\u6559\u6703\u6216\u6a5f\u69cb\u4e4b\u76f4\u5c6c\u4e0a\u53f8\u3001\u795e\u5b78\u9662\u8001\u5e2b\u6216\u5927\u5c08\u9662\u6821\u8001\u5e2b\uff0c\u4e14\u9808\u8207\u7533\u8acb\u4eba\u6709\u4e00\u5b9a\u8a8d\u8b58\u7a0b\u5ea6\uff0c\u80fd\u5c0d\u7533\u8acb\u4eba\u4e4b\u500b\u6027\u3001\u614b\u5ea6\u3001\u80fd\u529b\u4f5c\u51fa\u4e2d\u80af\u7684\u8a55\u4f30\u3002\u6b64\u5916\uff0c\u7533\u8acb\u4eba\u8207\u8aee\u8a62\u4eba\u4e0d\u5f97\u6709\u89aa\u5c6c\u95dc\u4fc2\u3002 \uff08\u8a3b\uff1a\u672c\u90e8\u6240\u6709\u6df1\u9020\u6587\u6191\uff0f\u6df1\u9020\u8b49\u66f8\u7533\u8acb\u4eba\u6240\u63d0\u540d\u7684\u5176\u4e2d\u4e00\u4f4d\u8aee\u8a62\u4eba\uff0c\u5fc5\u9808\u70ba\u7533\u8acb\u4eba\u6240\u5c6c\u5802\u6703\u4e4b\u8ca0\u8cac\u4eba\uff0c\u4f8b\u5982\u4e3b\u4efb\u7267\u5e2b\u3001\u5802\u4e3b\u4efb\u3001\u6216\u57f7\u4e8b\u6703\u4e3b\u5e2d\u7b49\uff0c\u5982\u7533\u8acb\u4eba\u6709\u7279\u5225\u539f\u56e0\u7121\u6cd5\u627e\u5230\u6240\u5c6c\u5802\u6703\u8ca0\u8cac\u4eba\u64d4\u4efb\u8aee\u8a62\u4eba\uff0c\u5247\u9808\u5411\u672c\u9662\u66f8\u9762\u8a73\u8ff0\u7406\u7531\uff0c\u7531\u9662\u9577\u6216\u6559\u52d9\u9577\u914c\u60c5\u6279\u6838\uff09 \u6240\u5c6c\u6559\u6703\u4e4b\u63a8\u85a6\u4fe1\uff08\u9644\u6559\u6703\u5370\u9452\uff09\uff08\u6df1\u9020\u6587\u6191\uff0f\u6df1\u9020\u8b49\u66f8\u8ab2\u7a0b\u4e4b\u7533\u8acb\u4eba\u53ef\u514d\u6b64\u9805\uff09\uff1b \u7533\u8acb\u4eba\u9808\u540c\u6642\u5411\u672c\u90e8\u905e\u4ea4\u5176\u5927\u5b78\u53ca\/\u6216\u795e\u5b78\u9662\u4e4b\u6210\u7e3e\u55ae\u6b63\u672c\uff08Official Transcript\uff09\uff0c\u8a72\u6b63\u672c\u5fc5\u9808\u7531\u6709\u95dc\u9662\u6821\u76f4\u63a5\u5bc4\u4ea4\u672c\u9662\u4fe1\u5f92\u795e\u5b78\u6559\u80b2\u90e8\uff08\u5730\u5740\uff1a\u4e5d\u9f8d\u65fa\u89d2\u5c71\u6771\u8857 47-51 \u865f\u4e2d\u50d1\u5546\u696d\u5927\u5ec8 10 \u6a13\uff09\u3002 \u5831\u540d\u8cbb\u6e2f\u5e63300\u5143\u3010\u51e1\u65bc7\u670810\u65e5\uff08\u4e94\uff09\u6216\u4e4b\u524d\uff08\u90f5\u5bc4\u4ee5\u90f5\u6233\u70ba\u6e96\uff09\u5831\u540d\u512a\u60e0\uff1a\u6e2f\u5e63150\u5143\u3011\u53ca\u9280\u884c\u4ed8\u6b3e\u8b49\u660e\u3002\u5831\u540d\u8cbb\u53ef\u900f\u904e\u4ee5\u4e0b\u65b9\u5f0f\u7e73\u4ed8\uff1a FPS \u8f49\u6578\u5feb &#8212; \u8b58\u5225\u78bc\uff1a166205906 &nbsp;\u6536\u6b3e\u5e33\u6236\u540d\u7a31\uff1aHong Kong Baptist Theological Seminary \u9280\u884c\u5165\u5e33 &#8212; \u5e33\u6236\u7de8\u865f\uff1a787-471739-883 (\u6046\u751f\u9280\u884c) &nbsp;\u6536\u6b3e\u5e33\u6236\u540d\u7a31\uff1aHong Kong Baptist Theological Seminary \u5283\u7dda\u652f\u7968\uff1a\u62ac\u982d\u5beb\u300c\u9999\u6e2f"}