This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- footer-wrap --> | |
<div id="footer-wrap" class="content-wrap">{footer}</div> | |
<!-- end footer-wrap --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="footer-wrap"> | |
<div id="footer"> | |
{footer} | |
<div></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="footer">{footer}</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
style="visibility:hidden" | |
<div id="footer" style="visibility:hidden">{footer}</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="footer" style="display:none">{footer}</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<br><br> | |
<div align="center"> © 2017 Weebly in 3 Min<br> | |
<a href="http://weeblyin3min.weebly.com" style="color: white;"> 首頁  </a> | | |
<a href="http://weeblyin3min.weebly.com/about.html" style="color: white;">  關於我們  </a> | | |
<a href="http://weeblyin3min.weebly.com/hank-chans-blog" style="color: white;">  攻略  </a> | | |
<a href="http://weeblyin3min.weebly.com/slides.html" style="color: white;">  Slides  </a> | | |
</div> | |
/* 以下是已經被遮蓋掉的 Weebly original footer */ | |
<div id="footer" style="display:none">{footer} </div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// write to file | |
var txtFile = "c:/test.txt"; | |
var file = new File(txtFile); | |
var str = "My string of text"; | |
file.open("w"); // open file with write access | |
file.writeln("First line of text"); | |
file.writeln("Second line of text " + str); | |
file.write(str); | |
file.close(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying my Blockstack ID is secured with the address 1D51kV6mLCuq9BdX6tvrJGGFLr4Pt7EdFR https://explorer.blockstack.org/address/1D51kV6mLCuq9BdX6tvrJGGFLr4Pt7EdFR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
/* Public domain project by Cloud Under (https://cloudunder.io). | |
* Repository: https://github.com/CloudUnder/lambda-edge-nice-urls | |
*/ | |
const config = { | |
suffix: '.html', | |
appendToDirs: 'index.html', | |
removeTrailingSlash: false, |
OlderNewer