{"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":"\u6b4c\u5531\u7684\u795e\u5b78\u9662 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"kqgzfmAIjz\"><a href=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/a-singing-seminary\/\">\u6b4c\u5531\u7684\u795e\u5b66\u9662<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/zh_cn\/presmessage\/a-singing-seminary\/embed\/#?secret=kqgzfmAIjz\" width=\"600\" height=\"338\" title=\"\u300a \u6b4c\u5531\u7684\u795e\u5b66\u9662\u300b\u2014\u9999\u6e2f\u6d78\u4fe1\u4f1a\u795e\u5b66\u9662\" data-secret=\"kqgzfmAIjz\" 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 \u6b4c\u5531\u7684\u795e\u5b78\u9662 \u3000\u3000\u6211\u5922\u898b\uff1a\u6211\u5011\u7684\u795e\u5b78\u9662\u4e0d\u4f46\u662f\u4e00\u6240\u79b1\u544a\u7684\u795e\u5b78\u9662\uff0c\u4e5f\u662f\u4e00\u6240\u6b4c\u5531\u7684\u795e\u5b78\u9662\uff08singing seminary\uff09\u3002\u79b1\u544a\u548c\u6b4c\u5531\uff0c\u5c0d\u6211\u4f86\u8aaa\uff0c\u662f\u9748\u6027\u7684\u64cd\u7df4\uff0c\u4ea6\u662f\u795e\u653e\u5728\u6211\u5fc3\u4e2d\u7684\u5169\u5e45\u5716\u756b\u3002 \u3000\u3000\u53bb\u5e74\uff0c\u5b78\u9662\u9762\u5c0d\u5f88\u591a\u6311\u6230\uff0c\u9808\u8981\u5728\u795e\u9762\u524d\u66f4\u65b0\u548c\u6210\u9577\u3002\u9019\u6bb5\u65e5\u5b50\u8457\u5be6\u4e0d\u5bb9\u6613\u904e\u3002\u6211\u5011\u7684\u540c\u5b78\u548c\u8001\u5e2b\u88ab\u5f15\u5c0e\u3001\u751a\u81f3\u662f\u53d7\u5230\u50ac\u8feb\uff0c\u8981\u9000\u4e0b\u4f86\u4e00\u540c\u79b1\u544a\uff1a\u7981\u98df\u79b1\u544a\uff0c\u628a\u9b3c\u8d95\u51fa\u53bb\u3002\u9019\u6b63\u5982\u8056\u7d93\u8a18\u8f09\u4e86\u4e00\u500b\u7537\u5b69\u88ab\u555e\u5df4\u9b3c\u6240\u9644\uff0c\u5728\u6545\u4e8b\u4e2d\uff0c\u8036\u7a4c\u8aaa\uff1a\u300c\u975e\u7528\u79b1\u544a\u3014\u6709\u53e4\u5377\u52a0\u7981\u98df\u4e8c\u5b57\u3015\uff0c\u9019\u4e00\u985e\u7684\u9b3c\u7e3d\u4e0d\u80fd\u51fa\u4f86\u3014\u6216\u8b6f\u4e0d\u80fd\u8d95\u4ed6\u51fa\u4f86\u3015\u3002\u300d\uff08\u53ef\u4e5d29\uff09\u6211\u6df1\u6df1\u9ad4\u6703\u5230\u79b1\u544a\u7684\u91cd\u8981\u6027\u3002\u56e0\u6b64\uff0c\u5728\u9019\u6bb5\u6642\u9593\uff0c\u6211\u601d\u60f3\u79b1\u544a\uff0c\u6211\u7814\u5beb\u79b1\u544a\uff0c\u6211\u5be6\u8e10\u79b1\u544a\uff1b\u6211\u8207\u773e\u540c\u5de5\u3001\u773e\u540c\u5b78\u4e00\u8d77\u79b1\u544a\uff0c\u5728\u79b1\u544a\u4e2d\u7d93\u6b77\u795e\u7684\u611b\u3002 \u3000\u3000\u5dee\u4e0d\u591a\u540c\u6642\uff0c\u795e\u53c8\u5728\u6211\u5fc3\u9748\u88e1\u7e6a\u756b\u4e86\u53e6\u4e00\u5e45\u5716\u756b\uff1a\u4e00\u5e45\u6b4c\u5531\u7684\u5716\u756b\u3002\u90a3\u662f\u4e00\u5e45\u5728\u9806\u5883\u6642\u6b4c\u5531\u3001\u5728\u9ed1\u6697\u6642\u4e5f\u6b4c\u5531\u7684\u5716\u756b\u3002\u8a69\u4eba\u8aaa\uff1a\u300c\u767d\u665d\uff0c\u8036\u548c\u83ef\u5fc5\u5411\u6211\u65bd\u6148\u611b\uff1b\u9ed1\u591c\uff0c\u6211\u8981\u6b4c\u980c\u79b1\u544a\u8cdc\u6211\u751f\u547d\u7684\u795e\u3002\u300d\uff08\u8a69\u56db\u5341\u4e8c8\uff09 \u3000\u3000\u6211\u671f\u76fc\u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662\u540c\u6642\u662f\u4e00\u6240\u6b4c\u5531\u7684\u795e\u5b78\u9662\u3002\u6211\u6240\u671f\u76fc\u7684\uff0c\u4e26\u4e0d\u662f\u55ae\u55ae\u70ba\u4e86\u8a13\u7df4\u50b3\u9053\u4eba\u5531\u6b4c\u5531\u5f97\u597d\uff0c\u65b9\u4fbf\u4e8b\u5949\u3001\u65b9\u4fbf\u9818\u5531\u3001\u65b9\u4fbf\u6307\u63ee\uff1b\u6216\u8005\u53ea\u662f\u70ba\u4e86\u63d0\u9ad8\u9818\u5531\u7684\u8cea\u7d20\u3001\u63d0\u6607\u6559\u6703\u97f3\u6a02\u7684\u8cea\u7d20\uff1b\u4e5f\u4e0d\u662f\u7d14\u56e0\u70ba\u8072\u6a02\u8a13\u7df4\u53ef\u4ee5\u5e6b\u52a9\u50b3\u9053\u4eba\u8b1b\u9053\u8b1b\u5f97\u597d\u4e00\u4e9b\u3002\u9019\u4e9b\u90fd\u662f\u6709\u9700\u8981\u7684\uff0c\u4f46\u6211\u66f4\u52a0\u770b\u91cd\u7684\u662f\uff1a\u6b4c\u5531\u662f\u4e00\u7a2e\u9748\u6027\u5be6\u8e10\uff08spirituality\uff09\u3002 \u3000\u3000\u6b4c\u5531\u662f\u4e00\u7a2e\u9748\u6027\u5be6\u8e10\u3002\u6211\u5011\u6b4c\u5531\uff0c\u662f\u56e0\u70ba\u795e\u7684\u5be6\u6709\u548c\u7942\u5de5\u4f5c\u7684\u5049\u5927\u3001\u5275\u9020\u548c\u6551\u6069\u7684\u5967\u79d8\u4e0d\u80fd\u53ea\u662f\u6211\u5011\u8166\u888b\u88e1\u7684\u601d\u8003\uff0c\u4e5f\u4e0d\u80fd\u55ae\u55ae\u4ee5\u8a00\u8a9e\u4f86\u8868\u9054\uff1b\u5b83\u5011\u537b\u5fc5\u9808\u88ab\u611f\u53d7\u548c\u8a60\u5531\u3002\u6b4c\u5531\u662f\u57fa\u7763\u5f92\u8b9a\u7f8e\u795e\u7684\u65b9\u5f0f\uff0c\u662f\u4ee5\u5fc3\u9748\u548c\u8aa0\u5be6\u980c\u63da\uff1a\u795e\u662f\u5049\u5927\u7684\uff0c\u8d85\u904e\u4eba\u7684\u601d\u60f3\uff1b\u795e\u7684\u5049\u5927\u662f\u8a9e\u8a00\u6240\u4e0d\u8db3\u4ee5\u8868\u8ff0\uff0c\u5fc5\u9808\u6df1\u5165\u5730\u611f\u53d7\u3002\u60df\u6709\u6b4c\u5531\u662f\u5168\u9762\u7684\u611f\u53d7\u548c\u8868\u8ff0\u3002 \u3000\u3000\u6211\u5011\u53ef\u5f9e\u611b\u5fb7\u83ef\u8332\uff08Jonathan Edwards\uff09\u7684\u795e\u5b78\u660e\u767d\u6b4c\u5531\u4e43\u9748\u6027\u5be6\u8e10\u7684\u610f\u6db5\u3002\u611b\u5fb7\u83ef\u8332\u6df1\u6df1\u9ad4\u6703\u795e\u7684\u5be6\u6709\u7684\u5967\u79d8\u3002\u4ed6\u8aaa\u795e\u4ee5\u5169\u7a2e\u65b9\u5f0f\u4f86\u53eb\u4eba\u660e\u767d\u7942\u7684\u69ae\u8000\u2500\u2500\u7942\u5411\u4eba\u7684\u7406\u6027\u548c\u5fc3\u9748\u8aaa\u8a71\u3002\u6240\u4ee5\uff0c\u4eba\u5fc5\u9808\u4ee5\u7406\u6027\u53bb\u7406\u89e3\u3001\u7528\u5fc3\u9748\u53bb\u9ad4\u6703\u795e\u7684\u69ae\u8000\u3002\u7576\u4eba\u770b\u898b\u795e\u7684\u69ae\u8000\uff0c\u4fbf\u6b61\u559c\u5feb\u6a02\u3002\u7576\u4eba\u6a02\u5728\u5176\u4e2d\uff0c\u795e\u5c31\u66f4\u5f97\u69ae\u8000\u3002\u5047\u5982\u4eba\u5206\u5272\u5730\u53bb\u601d\u60f3\u800c\u6c92\u6709\u5145\u5206\u5730\u611f\u53d7\u795e\u7684\u69ae\u8000\uff0c\u4ed6\u5011\u53ea\u662f\u628a\u795e\u7576\u5f97\u7684\u69ae\u8000\u6e1b\u534a\u3002\u5047\u5982\u4eba\u5f37\u70c8\u5730\u611f\u53d7\uff0c\u800c\u6c92\u6709\u771f\u5be6\u5730\u53bb\u7406\u89e3\u795e\u7684\u69ae\u8000\uff0c\u4e5f\u540c\u6a23\u662f\u5c07\u795e\u7684\u69ae\u8000\u6e1b\u534a\u3002 \u3000\u3000\u56e0\u6b64\uff0c\u6211\u5011\u660e\u767d\u5230\u6b4c\u5531\u5c0d\u57fa\u7763\u5f92\u7684\u5d07\u62dc\u800c\u8a00\uff0c\u662f\u5fc5\u4e0d\u53ef\u5c11\u7684\u3002\u56e0\u70ba\u795e\u5275\u9020\u548c\u6551\u8d16\u7684\u5be6\u6709\u662f\u5967\u79d8\uff0c\u7576\u5b83\u5011\u88ab\u771f\u78ba\u5730\u77e5"}