github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/r/gnoland/pages/page_events.gno (about)

     1  package gnopages
     2  
     3  func init() {
     4  	var (
     5  		path  = "events"
     6  		title = "Gno.land Core Team Attends Industry Events & Meetups"
     7  		// XXX: description = "If you’re interested in learning more about Gno.land, you can join us at major blockchain industry events throughout the year either in person or virtually."
     8  		body = `
     9  If you’re interested in building web3 with us, catch up with Gno.land in person at one of our industry events.
    10  We’re looking to connect with developers and like-minded thinkers who can contribute to the growth of our platform.
    11  
    12  ---
    13  
    14  ## Upcoming Events
    15  
    16  <div class="columns-3">
    17  
    18  <div class="column">
    19  
    20  ### GopherCon EU
    21  - Come Meet Us at our Booth
    22  - Berlin, June 17 - 20, 2024
    23  
    24  [Learn More](https://gophercon.eu/)
    25  </div><!-- end column-->
    26  
    27  <div class="column">
    28  
    29  ### GopherCon US
    30  - Come Meet Us at our Booth
    31  - Chicago, July 7 - 10, 2024
    32  
    33  [Learn More](https://www.gophercon.com/)
    34  
    35  </div><!-- end column-->
    36  
    37  <div class="column">
    38  
    39  ### Nebular Summit
    40  - Join our workshop
    41  - Brussels, July 12 - 13, 2024
    42  
    43  [Learn More](https://nebular.builders/)
    44  </div><!-- end column-->
    45  
    46  </div><!-- end columns-3-->
    47  
    48  ---
    49  
    50  ## Past Events
    51  
    52  <div class="columns-3">
    53  <div class="column">
    54  
    55  ### GopherCon US
    56  
    57  - **Come Meet Us at our Booth**
    58  - San Diego, September 26 - 29, 2023
    59  
    60  [Learn more](https://www.gophercon.com/)
    61  
    62  </div><!-- end column-->
    63  
    64  <div class="column">
    65  
    66  ### GopherCon EU
    67  
    68  - **Come Meet Us at our Booth**
    69  - Berlin, July 26 - 29, 2023
    70  
    71  [Learn more](https://gophercon.eu/)
    72  
    73  </div><!-- end column-->
    74  
    75  <div class="column">
    76  
    77  ### Nebular Summit Gno.land for Developers
    78  
    79  - Paris, July 24 - 25, 2023
    80  - Manfred Touron
    81  
    82  [Learn more](https://www.nebular.builders/)
    83  
    84  </div><!-- end column-->
    85  
    86  <div class="column">
    87  
    88  ### EthCC
    89  
    90  - **Come Meet Us at our Booth**
    91  - Paris, July 17 - 20, 2023
    92  - Manfred Touron
    93  
    94  [Learn more](https://www.ethcc.io/)
    95  
    96  </div><!-- end column-->
    97  
    98  <div class="column">
    99  
   100  ### Eth Seoul
   101  
   102  - **The Evolution of Smart Contracts: A Journey into Gno.land**
   103  - Seoul, June 3, 2023
   104  - Manfred Touron
   105  
   106  [Learn more](https://2023.ethseoul.org/)
   107  
   108  </div><!-- end column-->
   109  <div class="column">
   110  
   111  ### BUIDL Asia
   112  
   113  - **Proof of Contribution in Gno.land**
   114  - Seoul, June 6, 2023
   115  - Manfred Touron
   116  
   117  [Learn more](https://www.buidl.asia/)
   118  
   119  </div><!-- end column-->
   120  <div class="column">
   121  
   122  ### Game Developer Conference
   123  
   124  - **Side Event: Web3 Gaming Apps Powered by Gno**
   125  - San Francisco, Mach 23, 2023
   126  - Jae Kwon
   127  
   128  [Watch the talk](https://www.youtube.com/watch?v=IJ0xel8lr4c)
   129  
   130  </div><!-- end column-->
   131  <div class="column">
   132  
   133  ### EthDenver
   134  
   135  - **Side Event: Discover Gno.land**
   136  - Denver, Feb 24 - Mar 5, 2023
   137  - Jae Kwon
   138  
   139  [Watch the talk](https://www.youtube.com/watch?v=IJ0xel8lr4c)
   140  
   141  </div><!-- end column-->
   142  <div class="column">
   143  
   144  ### Istanbul Blockchain Week
   145  
   146  - Istanbul, Nov 14 - 17, 2022
   147  - Manfred Touron
   148  
   149  [Watch the talk](https://www.youtube.com/watch?v=JX0gdWT0Cg4)
   150  
   151  </div><!-- end column-->
   152  <div class="column">
   153  
   154  ### Web Summit Buckle Up and Build with Cosmos
   155  
   156  - Lisbon, Nov 1 - 4, 2022
   157  - Manfred Touron
   158  
   159  </div><!-- end column-->
   160  <div class="column">
   161  
   162  ### Cosmoverse
   163  
   164  - Medallin, Sept 26 - 28, 2022
   165  - Manfred Touron
   166  
   167  [Watch the talk](https://www.youtube.com/watch?v=6s1zG7hgxMk)
   168  
   169  </div><!-- end column-->
   170  <div class="column">
   171  
   172  ### Berlin Blockchain Week Buckle Up and Build with Cosmos
   173  
   174  - Berlin, Sept 11 - 18, 2022
   175  
   176  [Watch the talk](https://www.youtube.com/watch?v=hCLErPgnavI)
   177  
   178  </div><!-- end column-->
   179  </div><!-- end columns-3-->`
   180  	)
   181  	_ = b.NewPost("", path, title, body, "2022-05-20T13:17:24Z", nil, nil)
   182  }