update web.js

This commit is contained in:
Stefan Feješ
2018-04-07 12:04:42 +02:00
parent 9e583c2720
commit 53f8f5676f
2 changed files with 9 additions and 1 deletions

View File

@ -27,6 +27,6 @@
</div> </div>
</div> </div>
</div> </div>
<footer class="container"><div class="row"><div class="col-sm-12 col-md-10 col-lg-8 col-md-offset-1 col-lg-offset-2"><p style="display:inline-block"><strong>30 seconds of code</strong> is licensed under the <a href="https://github.com/Chalarangelo/30-seconds-of-code/blob/master/LICENSE">CC0-1.0</a> license.<br>Icons made by <a href="https://www.flaticon.com/authors/smashicons">Smashicons</a> from <a href="https://www.flaticon.com/">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/">CC 3.0 BY</a>.<br>Ribbon made by <a href="https://github.com/tholman/github-corners">Tim Holman</a> is licensed by <a href="https://opensource.org/licenses/MIT">The MIT License</a><br>Built with the <a href="https://minicss.org">mini.css framework</a>.</p></div></div></footer> <div class="card fluid"><button class="primary clipboard-copy">&#128203;&nbsp;Copy to clipboard</button></div></div> <footer class="container"><div class="row"><div class="col-sm-12 col-md-10 col-lg-8 col-md-offset-1 col-lg-offset-2"><p style="display:inline-block"><strong>30 seconds of code</strong> is licensed under the <a href="https://github.com/Chalarangelo/30-seconds-of-code/blob/master/LICENSE">CC0-1.0</a> license.<br>Icons made by <a href="https://www.flaticon.com/authors/smashicons">Smashicons</a> from <a href="https://www.flaticon.com/">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/">CC 3.0 BY</a>.<br>Ribbon made by <a href="https://github.com/tholman/github-corners">Tim Holman</a> is licensed by <a href="https://opensource.org/licenses/MIT">The MIT License</a><br>Built with the <a href="https://minicss.org">mini.css framework</a>.</p></div></div></footer>
</body> </body>
</html> </html>

View File

@ -170,8 +170,16 @@ try {
try { try {
// Add the static part // Add the static part
beginnerOutput += `${startBeginnerPart + '\n'}`; beginnerOutput += `${startBeginnerPart + '\n'}`;
beginnerOutput +=
'<div class="card fluid">' +
// begginer snippet goes here.
'<button class="primary clipboard-copy">&#128203;&nbsp;Copy to clipboard</button>' +
'</div></div>';
beginnerOutput += `${endBeginnerPart}`; beginnerOutput += `${endBeginnerPart}`;
// Generate
fs.writeFileSync(path.join(docsPath, 'beginner.html'), beginnerOutput); fs.writeFileSync(path.join(docsPath, 'beginner.html'), beginnerOutput);