Skip to content

Commit

Permalink
minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
automaticdai committed Apr 29, 2022
1 parent f11017c commit 16caf32
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 16 deletions.
4 changes: 1 addition & 3 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@ title = "YF Robotics Laboratory"

[params]
favicon = ""
subtitle = "Building a Brighter Future with Robots."
subtitle = "Building a Brighter Future with Robots and Autonomous Systems."
custom_css = ["/css/custom.css"]


[markup.goldmark.renderer]
unsafe = true

6 changes: 3 additions & 3 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ menu: true

## About YFRL

YF Robotics Laboratory (YFRL) is an international robotics group. YFRL was founded with the vision that robots will contribute to human society and largely affect the way how people will live in the future. Our mission is to promote STEM and robot education and bring ideas to the public with state-of-the-art robot research and technologies across the world.
YF Robotics Laboratory (YFRL) is an independent, international and inclusive robotics interest group. YFRL was founded with the vision that robots will contribute to human society and largely affect the way how people would live in the near future. Our mission is to promote robotics projects and education, and to bring ideas from professionals to the public with state-of-the-art robotic research and technologies across the world.

We are a small group of people from worldwide who love robots. We aim to bring together robot researchers, developers and enthusiasts to build a world with more intelligent, reliable and safer autonomous robots.
We are a small special interest group of people from worldwide who love robots. We aim to bring together robot researchers, developers and enthusiasts to build a world with more intelligent, reliable and safer autonomous robots. We are specially interested to create cross-domain robotics-related projects, to make robots social friendly, and to make people thinking how to live harmony with robots.

Please help us by telling us which robot activities you do and what you could possible do together with us by sending an email to [email protected].
Please help us by telling us which robot activities you are involved in and what possibly you could do together with us by sending an email to [email protected].
2 changes: 1 addition & 1 deletion content/contribution/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ draft: false
menu: true
---

Our group members continuous to contribute to academic research and the opensource community, especially on robotics projects and we hope our work can contribute to the future development of robotics.
Our group members continuous to contribute to academic research and the open source community in robotics. We hope our work can contribute to the future development of robots.
2 changes: 1 addition & 1 deletion content/contribution/col2.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ menu: true
order: 2
---

We love opensource and we make innovations using opensource software and hardware including:
We love opensource and we make innovations using open source software and hardware including:

- Linux gnu / gcc
- ROS / Gazebo
Expand Down
30 changes: 24 additions & 6 deletions layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,29 @@
</section>
</div>

<!-- education -->
<!-- projects -->
<div class="div-padding">
<section class="container clearfix">
<div class="row minisection">
{{ with .Site.GetPage "/education" }}
{{ with .Site.GetPage "/projects" }}
<h2>{{ .Title }}</h2>
{{ .Content }}
{{range .Pages.ByParam "order"}}
<div class="col-sm">
<h3 class="text-center">{{ .Title }}</h3>
{{ .Content }}
</div>
{{ end }}
{{ end }}
</div>
</section>
</div>

<!-- education -->
<div class="div-padding bg-color-grey">
<section class="container clearfix">
<div class="row minisection">
{{ with .Site.GetPage "/education" }}
<h2>{{ .Title }}</h2>
{{ .Content }}
<div class="col-sm">
Expand All @@ -37,9 +55,9 @@ <h3 class="text-center">{{ .Title }}</h3>
</div>

<!-- contribution -->
<div class="div-padding bg-color-grey">
<div class="div-padding">
<section class="container">
{{ with .Site.GetPage "/contribution" }}
{{ with .Site.GetPage "/contribution" }}
<h2>{{ .Title }}</h2>
{{ .Content }}
<div class="row minisection">
Expand All @@ -58,9 +76,9 @@ <h3 class="text-center">{{ .Title }}</h3>
</div>

<!-- contact -->
<div class="div-padding">
<div class="div-padding bg-color-grey">
<section class="container">
{{ with .GetPage "contact"}}
{{ with .GetPage "contact"}}
<h2>{{ .Title }}</h2>
<div class="row">
<div class="col-6">
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<a href="#" style="padding-right: 20px;">Back to top</a>
</p>
<div class="text-center" style="background: #000000; color: #fefefe;">
<p>Copyright © {{ now.Format "2006" }} {{.Site.Title}}</p>
<p>Copyright © 2020-{{ now.Format "2006" }} {{.Site.Title}}</p>
</div>
</footer>
2 changes: 1 addition & 1 deletion layouts/partials/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{{ range .Pages }}
{{ if .Params.menu }}
<li class="nav-item">
<a class="nav-link" href="{{ .URL }}">{{ .Title }}</a>
<a class="nav-link" href="{{ .Params.URL }}">{{ .Title }}</a>
</li>
{{ end }}
{{ end }}
Expand Down

0 comments on commit 16caf32

Please sign in to comment.