Skip to content
View mylightningnetwork's full-sized avatar

Block or report mylightningnetwork

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
mylightningnetwork/README.md

myLightning.network

minimum hugo version 0.101.0+extended

Setup dev env

Configure "config.toml"

Run hugo server

hugo serve -D

Build hugo site

hugo --ignoreCache --minify

To create new page

hugo new content/page_name.md

and then edit file located at "./content/page_name.md", setup frontmatter

To create new blog post

hugo new content/posts/post_title.md

and then edit file located at "./content/posts/post_title.md", then setup frontmatter

Front matter breakdown

---
title: "Post Title" (1)
date: 2022-08-18T19:23:39+07:00 (2)
draft: false (3)
seo_description: "lorem ipsum dolor sit amet" (4)
seo_keyword: (5)
  - keyword1
  - keyword2
thumbnail: "posts/example.jpg" (6)
youtube_url: "https://www.youtube.com/watch?v=D0UnqGm_miA" (7)
audio_url: "/assets/audios/file.mp3" (8)
tags: (9)
  - tags1
  - tags2
category: (10)
  - Magazine
  - Podcast
slug: "{{ lower .Name | urlize }}" (11)
---
  1. Set page or post title
  2. Set date page or post published
  3. Set draft, set to true then page or post will be hidden in production
  4. Set SEO META description
  5. Set SEO META keyword
  6. Set thumbnail, value must be set, place image in "./static/assets/images/"
  7. Set youtube URL
  8. Set audio URL (for Podcast category, other than Podcast set to "")
  9. Set post tags, must be set at least 1 tag
  10. Set post category, must be set at least 1 category
  11. Set URL slug

Popular repositories Loading

  1. mylightning.network.old.website mylightning.network.old.website Public

    lightning network magazine content

    CSS

  2. defraud.ai defraud.ai Public

    Forked from defianalytics/defraud.ai

    Place where people meet to discuss and know fraud within DeFi & NFTs https://defianalytics.github.io/defraud.ai/

    CSS

  3. bolts bolts Public

    Forked from lightning/bolts

    BOLT: Basis of Lightning Technology (Lightning Network Specifications)

    Markdown

  4. lnd-manageJ lnd-manageJ Public

    Forked from C-Otto/lnd-manageJ

    routing and path finding algorithms along with node monitoring

    Java

  5. Price-Of-Anarchy-in-Selfish-Routing Price-Of-Anarchy-in-Selfish-Routing Public

    Forked from lnresearch/Price-Of-Anarchy-in-Selfish-Routing

    We provide a model how the Price of Anarchy can be described on the Lightning Network under selfish behavior of sending nodes

    Jupyter Notebook

  6. topology topology Public

    Forked from lnresearch/topology

    Data about the past and current structure of the Lightning Network

    Python